diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-26 01:19:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-26 01:19:03 +0300 |
commit | 8fcd2e6f3002db388b1273ee3904285eb3ce8c54 (patch) | |
tree | b27f88fff1c61916603a6094ea5c4184562e6d0e /src/actions/commands.cpp | |
parent | cc3e067e9fdf2a1306e62d13dea0fdb315a925c9 (diff) | |
download | plus-8fcd2e6f3002db388b1273ee3904285eb3ce8c54.tar.gz plus-8fcd2e6f3002db388b1273ee3904285eb3ce8c54.tar.bz2 plus-8fcd2e6f3002db388b1273ee3904285eb3ce8c54.tar.xz plus-8fcd2e6f3002db388b1273ee3904285eb3ce8c54.zip |
Add chat command /unjail. Also add it to player context menu.
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 1ad0cf9a9..a1b746852 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1465,4 +1465,13 @@ impHandler(commandJail) return true; } +impHandler(commandUnjail) +{ + const std::string args = event.args; + if (args.empty()) + return false; + adminHandler->unjail(args); + return true; +} + } // namespace Actions |