diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-26 11:58:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-26 11:58:28 +0300 |
commit | ae4062ed3c48706127c32efbc70cca0cc5ce19f8 (patch) | |
tree | ba2576179837ca60fe4340e55aef627b9df84405 /src/commands.h | |
parent | 2018073c8ec531d936321f2e6561b68d386f36a5 (diff) | |
download | plus-ae4062ed3c48706127c32efbc70cca0cc5ce19f8.tar.gz plus-ae4062ed3c48706127c32efbc70cca0cc5ce19f8.tar.bz2 plus-ae4062ed3c48706127c32efbc70cca0cc5ce19f8.tar.xz plus-ae4062ed3c48706127c32efbc70cca0cc5ce19f8.zip |
Move chat command /navigate 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 84f6b20d0..19c311320 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(imitation); - decHandler(navigate); decHandler(mail); decHandler(hack); decHandler(priceLoad); @@ -106,8 +105,7 @@ namespace Commands enum { - COMMAND_NAVIGATE = 0, - COMMAND_IMITATION, + COMMAND_IMITATION = 0, COMMAND_MAIL, COMMAND_TRADE, COMMAND_PRICELOAD, @@ -161,7 +159,6 @@ enum static const CommandInfo commands[] = { - {"navigate", &Commands::navigate, -1, true}, {"imitation", &Commands::imitation, -1, true}, {"mail", &Commands::mail, -1, true}, {"trade", &Commands::trade, -1, true}, |