diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-25 22:25:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-25 22:25:26 +0300 |
commit | 0f49c02c2813ce853a7699b673103c8ef5edc05d (patch) | |
tree | 5b34aa7ad1a09baa115b6a0b83eb9676969afee4 /src/actions/commands.cpp | |
parent | 11bab6c211e60bfa7e50cf3de10429c1feaf9547 (diff) | |
download | manaplus-0f49c02c2813ce853a7699b673103c8ef5edc05d.tar.gz manaplus-0f49c02c2813ce853a7699b673103c8ef5edc05d.tar.bz2 manaplus-0f49c02c2813ce853a7699b673103c8ef5edc05d.tar.xz manaplus-0f49c02c2813ce853a7699b673103c8ef5edc05d.zip |
Add chat command for warp to player.
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index ebf4413e1..08c1fcbba 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1438,6 +1438,15 @@ impHandler(commandGotoNpc) return true; } +impHandler(commandGotoPc) +{ + const std::string args = event.args; + if (args.empty()) + return false; + adminHandler->gotoName(args); + return true; +} + impHandler(commandKiller) { adminHandler->killer(event.args); |