diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-26 00:53:29 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-26 00:53:29 +0300 |
commit | e2dddbdd9599b9b1f6a9825ee06d4d3616d9d1dd (patch) | |
tree | ee5204871bd3fe6bdc5638d7ee95a75ceb8efe95 /src/commands.h | |
parent | 6e99f459bf4895e41118dbcf00ed3ba027b5b952 (diff) | |
download | plus-e2dddbdd9599b9b1f6a9825ee06d4d3616d9d1dd.tar.gz plus-e2dddbdd9599b9b1f6a9825ee06d4d3616d9d1dd.tar.bz2 plus-e2dddbdd9599b9b1f6a9825ee06d4d3616d9d1dd.tar.xz plus-e2dddbdd9599b9b1f6a9825ee06d4d3616d9d1dd.zip |
Move chat command /follow 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 761af598a..28add6b34 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(follow); decHandler(imitation); decHandler(heal); decHandler(navigate); @@ -108,8 +107,7 @@ namespace Commands enum { - COMMAND_FOLLOW = 0, - COMMAND_HEAL, + COMMAND_HEAL = 0, COMMAND_NAVIGATE, COMMAND_IMITATION, COMMAND_MAIL, @@ -165,7 +163,6 @@ enum static const CommandInfo commands[] = { - {"follow", &Commands::follow, -1, true}, {"heal", &Commands::heal, -1, true}, {"navigate", &Commands::navigate, -1, true}, {"imitation", &Commands::imitation, -1, true}, |