diff options
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index a2aa38734..e063f2f01 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -367,4 +367,10 @@ void AdminHandler::guildRecall(const std::string &name) const Gm::runCommand("guildrecall", name); } +void AdminHandler::slide(const int x, const int y) const +{ + Gm::runCommand("slide", + strprintf("%d %d", x, y)); +} + } // namespace EAthena |