diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-25 23:42:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-25 23:42:20 +0300 |
commit | 3529ae89be2b72e34d119ed4a2aca7b30403032c (patch) | |
tree | 3b6f795a2f6f9dc68b73daa877dd37c26772082a /src/commands.h | |
parent | 81b70110b56fb44b913ad58e1640909c9a7a6d3c (diff) | |
download | plus-3529ae89be2b72e34d119ed4a2aca7b30403032c.tar.gz plus-3529ae89be2b72e34d119ed4a2aca7b30403032c.tar.bz2 plus-3529ae89be2b72e34d119ed4a2aca7b30403032c.tar.xz plus-3529ae89be2b72e34d119ed4a2aca7b30403032c.zip |
Move chat command /emote 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 60d759050..a1e826ee6 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(emote); decHandler(emotePet); decHandler(away); decHandler(pseudoAway); @@ -112,8 +111,7 @@ namespace Commands enum { - COMMAND_EMOTE = 0, - COMMAND_EMOTEPET, + COMMAND_EMOTEPET = 0, COMMAND_AWAY, COMMAND_PSEUDOAWAY, COMMAND_FOLLOW, @@ -173,7 +171,6 @@ enum static const CommandInfo commands[] = { - {"emote", &Commands::emote, -1, true}, {"emotepet", &Commands::emotePet, -1, true}, {"away", &Commands::away, -1, true}, {"pseudoaway", &Commands::pseudoAway, -1, true}, |