diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-03-18 13:49:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-03-18 13:49:30 +0300 |
commit | b25682842931ba1414a8c83d8353eb24c7203f92 (patch) | |
tree | 5756f49325095a860fae02e7b5f291620e25c9e3 /src/commands.h | |
parent | be1e878453d984584f11587cbba8bb4b223f9943 (diff) | |
download | plus-b25682842931ba1414a8c83d8353eb24c7203f92.tar.gz plus-b25682842931ba1414a8c83d8353eb24c7203f92.tar.bz2 plus-b25682842931ba1414a8c83d8353eb24c7203f92.tar.xz plus-b25682842931ba1414a8c83d8353eb24c7203f92.zip |
Add /gm chat command.
It send message to all online gms.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h index e53d66559..6dd688a17 100644 --- a/src/commands.h +++ b/src/commands.h @@ -133,6 +133,7 @@ namespace Commands decHandler(uploadConfig); decHandler(uploadServerConfig); decHandler(uploadLog); + decHandler(gm); void replaceVars(std::string &str); } // namespace Commands @@ -233,6 +234,7 @@ enum COMMAND_UPLOADCONFIG, COMMAND_UPLOADSERVERCONFIG, COMMAND_UPLOADLOG, + COMMAND_GM, COMMAND_HACK, END_COMMANDS }; @@ -333,6 +335,7 @@ static const CommandInfo commands[] = {"uploadconfig", &Commands::uploadConfig, -1, false}, {"uploadserverconfig", &Commands::uploadServerConfig, -1, false}, {"uploadlog", &Commands::uploadLog, -1, false}, + {"gm", &Commands::gm, -1, true}, {"hack", &Commands::hack, -1, true} }; |