summaryrefslogtreecommitdiff
path: root/src/actions/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r--src/actions/commands.cpp9
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);