diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-25 23:21:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-25 23:22:35 +0300 |
commit | 81b70110b56fb44b913ad58e1640909c9a7a6d3c (patch) | |
tree | f9d7012a01b9c5e7c5e1634fa16f74a1daaf1eca /src/commands.h | |
parent | b0ab41f03839163549de4344c027a69312458e77 (diff) | |
download | plus-81b70110b56fb44b913ad58e1640909c9a7a6d3c.tar.gz plus-81b70110b56fb44b913ad58e1640909c9a7a6d3c.tar.bz2 plus-81b70110b56fb44b913ad58e1640909c9a7a6d3c.tar.xz plus-81b70110b56fb44b913ad58e1640909c9a7a6d3c.zip |
Move chat command /outfit into actions.
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/commands.h b/src/commands.h index 222e60467..60d759050 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,8 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(attackHuman); - decHandler(outfit); decHandler(emote); decHandler(emotePet); decHandler(away); @@ -114,8 +112,7 @@ namespace Commands enum { - COMMAND_OUTFIT = 0, - COMMAND_EMOTE, + COMMAND_EMOTE = 0, COMMAND_EMOTEPET, COMMAND_AWAY, COMMAND_PSEUDOAWAY, @@ -176,7 +173,6 @@ enum static const CommandInfo commands[] = { - {"outfit", &Commands::outfit, -1, true}, {"emote", &Commands::emote, -1, true}, {"emotepet", &Commands::emotePet, -1, true}, {"away", &Commands::away, -1, true}, |