diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-25 18:37:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-25 18:37:52 +0300 |
commit | 86c02e2712e2177ae6a41bbfa66e6284d6ff9b15 (patch) | |
tree | ee2bfa8e5d4d37c64516b822650000c5f3c1be9f /src/net/eathena/adminhandler.cpp | |
parent | 03eb816ad582e712f05696e65a3d443fcf181222 (diff) | |
download | plus-86c02e2712e2177ae6a41bbfa66e6284d6ff9b15.tar.gz plus-86c02e2712e2177ae6a41bbfa66e6284d6ff9b15.tar.bz2 plus-86c02e2712e2177ae6a41bbfa66e6284d6ff9b15.tar.xz plus-86c02e2712e2177ae6a41bbfa66e6284d6ff9b15.zip |
Add chat command /loadposition. Also add it to player context menu.
Diffstat (limited to 'src/net/eathena/adminhandler.cpp')
-rw-r--r-- | src/net/eathena/adminhandler.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/net/eathena/adminhandler.cpp b/src/net/eathena/adminhandler.cpp index 9794a8b51..80a1df983 100644 --- a/src/net/eathena/adminhandler.cpp +++ b/src/net/eathena/adminhandler.cpp @@ -255,4 +255,9 @@ void AdminHandler::savePosition(const std::string &name) const Gm::runCharCommand("save", name); } +void AdminHandler::loadPosition(const std::string &name) const +{ + Gm::runCharCommand("load", name); +} + } // namespace EAthena |