diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-25 21:54:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-25 21:54:31 +0300 |
commit | f8423bd2d31ac4da409cabdc84fa2e3962336103 (patch) | |
tree | df71e84fae1ba7bdabea1c2de1f69db7881f4771 /src/actions/commands.cpp | |
parent | 0b448599f2a1422630e80fbd12f7c6fd9792460e (diff) | |
download | plus-f8423bd2d31ac4da409cabdc84fa2e3962336103.tar.gz plus-f8423bd2d31ac4da409cabdc84fa2e3962336103.tar.bz2 plus-f8423bd2d31ac4da409cabdc84fa2e3962336103.tar.xz plus-f8423bd2d31ac4da409cabdc84fa2e3962336103.zip |
Add chat command /disguise. 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 3f12c0ed2..8cc076fba 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1420,4 +1420,13 @@ impHandler(commandAlive) return true; } +impHandler(commandDisguise) +{ + const std::string args = event.args; + if (args.empty()) + return false; + adminHandler->disguise(args); + return true; +} + } // namespace Actions |