diff options
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 68f1a71fe..e6721e4f0 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1314,4 +1314,13 @@ impHandler(locatePlayer) return true; } +impHandler(commandShowAccountInfo) +{ + const std::string args = event.args; + if (args.empty()) + return false; + adminHandler->showAccountInfo(args); + return true; +} + } // namespace Actions |