summaryrefslogtreecommitdiff
path: root/src/actions/commands.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-02-25 22:41:18 +0300
committerAndrei Karas <akaras@inbox.ru>2016-02-25 22:41:18 +0300
commitbb0b0d183a4f777653df14f5e003b893e47a9e76 (patch)
treeff6b0c8038330e88dd7d16688048f208b7a5a5be /src/actions/commands.cpp
parent66c33ea3f5e82ae09b935f65d7183b4ffc8bb9b1 (diff)
downloadplus-bb0b0d183a4f777653df14f5e003b893e47a9e76.tar.gz
plus-bb0b0d183a4f777653df14f5e003b893e47a9e76.tar.bz2
plus-bb0b0d183a4f777653df14f5e003b893e47a9e76.tar.xz
plus-bb0b0d183a4f777653df14f5e003b893e47a9e76.zip
Add chat command /nuke. Also add it to player context menu.
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 f0dd84500..1bc922a1f 100644
--- a/src/actions/commands.cpp
+++ b/src/actions/commands.cpp
@@ -1441,4 +1441,13 @@ impHandler(commandHide)
return true;
}
+impHandler(commandNuke)
+{
+ const std::string args = event.args;
+ if (args.empty())
+ return false;
+ adminHandler->nuke(args);
+ return true;
+}
+
} // namespace Actions