diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 16:32:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 16:32:44 +0300 |
commit | 60c983e043b9ec502b65785306887003f5bcb27b (patch) | |
tree | f563332745eea7bb17fa31046db74364e4183ad4 /src/commands.h | |
parent | de2e84a86c3419a41de594951c452e25dde60d86 (diff) | |
download | plus-60c983e043b9ec502b65785306887003f5bcb27b.tar.gz plus-60c983e043b9ec502b65785306887003f5bcb27b.tar.bz2 plus-60c983e043b9ec502b65785306887003f5bcb27b.tar.xz plus-60c983e043b9ec502b65785306887003f5bcb27b.zip |
Move chat command /uploadlog into actions.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h index 4feffefbd..553b97ba4 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(uploadLog); decHandler(gm); decHandler(debugSpawn); @@ -61,8 +60,7 @@ namespace Commands enum { - COMMAND_UPLOADLOG = 0, - COMMAND_GM, + COMMAND_GM = 0, COMMAND_HACK, COMMAND_DEBUGSPAWN, END_COMMANDS @@ -70,7 +68,6 @@ enum static const CommandInfo commands[] = { - {"uploadlog", &Commands::uploadLog, -1, false}, {"gm", &Commands::gm, -1, true}, {"hack", &Commands::hack, -1, true}, {"debugSpawn", &Commands::debugSpawn, -1, true} |