summaryrefslogtreecommitdiff
path: root/src/net/eathena/adminhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-09 12:55:03 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-09 12:55:03 +0300
commite7f2216326c3fba6a76d0ee3af1fba9a7782cec6 (patch)
tree18d1097e36a1905031255ae6dfdc301148eb2e2e /src/net/eathena/adminhandler.cpp
parenta5199d9d9af28d7a2b5472b02c72445c25a5a3f9 (diff)
downloadplus-e7f2216326c3fba6a76d0ee3af1fba9a7782cec6.tar.gz
plus-e7f2216326c3fba6a76d0ee3af1fba9a7782cec6.tar.bz2
plus-e7f2216326c3fba6a76d0ee3af1fba9a7782cec6.tar.xz
plus-e7f2216326c3fba6a76d0ee3af1fba9a7782cec6.zip
eathena: add support for packet CMSG_PLAYER_MAPMOVE 0x0140.
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r--src/net/eathena/adminhandler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp
index 1fbc30ee1..56f69feeb 100644
--- a/src/net/eathena/adminhandler.cpp
+++ b/src/net/eathena/adminhandler.cpp
@@ -99,8 +99,10 @@ void AdminHandler::kick(const int playerId) const
void AdminHandler::warp(const std::string &map, const int x, const int y) const
{
- Net::getChatHandler()->talk(strprintf(
- "@warp %s %d %d", map.c_str(), x, y), GENERAL_CHANNEL);
+ MessageOut outMsg(CMSG_PLAYER_MAPMOVE);
+ outMsg.writeString(map, 16, "map");
+ outMsg.writeInt16(x, "x");
+ outMsg.writeInt16(y, "y");
}
} // namespace EAthena