diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-09 12:43:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-09 12:43:54 +0300 |
commit | a5199d9d9af28d7a2b5472b02c72445c25a5a3f9 (patch) | |
tree | b31a7460a35fd06a1ee79f0d78801f1f778cc5f8 /src/net/tmwa/adminhandler.cpp | |
parent | f580ee13d492ad7971fe3828a9dc59ce8aafbc27 (diff) | |
download | plus-a5199d9d9af28d7a2b5472b02c72445c25a5a3f9.tar.gz plus-a5199d9d9af28d7a2b5472b02c72445c25a5a3f9.tar.bz2 plus-a5199d9d9af28d7a2b5472b02c72445c25a5a3f9.tar.xz plus-a5199d9d9af28d7a2b5472b02c72445c25a5a3f9.zip |
Move AdminHandler::warp from ea namespace into eathena and tmwa.
Diffstat (limited to 'src/net/tmwa/adminhandler.cpp')
-rw-r--r-- | src/net/tmwa/adminhandler.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/tmwa/adminhandler.cpp b/src/net/tmwa/adminhandler.cpp index 6cb0601f4..a890ea5fc 100644 --- a/src/net/tmwa/adminhandler.cpp +++ b/src/net/tmwa/adminhandler.cpp @@ -24,6 +24,11 @@ #include "notifymanager.h" +#include "gui/chatconsts.h" + +#include "net/chathandler.h" +#include "net/net.h" + #include "net/tmwa/messageout.h" #include "net/tmwa/protocol.h" @@ -94,4 +99,10 @@ void AdminHandler::kick(const int playerId) const outMsg.writeInt32(playerId, "account id"); } +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); +} + } // namespace TmwAthena |