diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-26 15:59:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-26 15:59:27 +0300 |
commit | 662ea582cd57827475062fb6b728da6c21c14181 (patch) | |
tree | 1dc38343871d3e36d09a16ee2d85d95ae81da3e0 /src/commands.h | |
parent | ffe1b11e981112a662669358863805fabe14e94c (diff) | |
download | plus-662ea582cd57827475062fb6b728da6c21c14181.tar.gz plus-662ea582cd57827475062fb6b728da6c21c14181.tar.bz2 plus-662ea582cd57827475062fb6b728da6c21c14181.tar.xz plus-662ea582cd57827475062fb6b728da6c21c14181.zip |
Move chat command /pricesave 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 dd60778e8..c658a229f 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(priceSave); decHandler(disconnect); decHandler(undress); decHandler(attack); @@ -101,8 +100,7 @@ namespace Commands enum { - COMMAND_PRICESAVE = 0, - COMMAND_CACHEINFO, + COMMAND_CACHEINFO = 0, COMMAND_DISCONNECT, COMMAND_UNDRESS, COMMAND_ATTACK, @@ -151,7 +149,6 @@ enum static const CommandInfo commands[] = { - {"pricesave", &Commands::priceSave, -1, false}, {"cacheinfo", &Commands::cacheInfo, -1, false}, {"disconnect", &Commands::disconnect, -1, false}, {"undress", &Commands::undress, -1, true}, |