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