summaryrefslogtreecommitdiff
path: root/src/commands.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-27 19:21:37 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-27 19:21:37 +0300
commit7b2fbfb1f4384cb0e86d4c7cca81a526444d54b8 (patch)
tree40cf0cab5c0549506555f53422d67ff4f2b868ee /src/commands.h
parent7112c6d75657791aab52a5e1e2f7aec9a0b2519d (diff)
downloadplus-7b2fbfb1f4384cb0e86d4c7cca81a526444d54b8.tar.gz
plus-7b2fbfb1f4384cb0e86d4c7cca81a526444d54b8.tar.bz2
plus-7b2fbfb1f4384cb0e86d4c7cca81a526444d54b8.tar.xz
plus-7b2fbfb1f4384cb0e86d4c7cca81a526444d54b8.zip
add pet emote command.
New chat command: /emotepet emote
Diffstat (limited to 'src/commands.h')
-rw-r--r--src/commands.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h
index dca935226..711e4e87e 100644
--- a/src/commands.h
+++ b/src/commands.h
@@ -81,6 +81,7 @@ namespace Commands
decHandler(ignoreAll);
decHandler(outfit);
decHandler(emote);
+ decHandler(emotePet);
decHandler(away);
decHandler(pseudoAway);
decHandler(follow);
@@ -170,6 +171,7 @@ enum
COMMAND_ATKHUMAN,
COMMAND_OUTFIT,
COMMAND_EMOTE,
+ COMMAND_EMOTEPET,
COMMAND_AWAY,
COMMAND_PSEUDOAWAY,
COMMAND_FOLLOW,
@@ -265,6 +267,7 @@ static const CommandInfo commands[] =
{"atkhuman", &Commands::attackHuman, -1, true},
{"outfit", &Commands::outfit, -1, true},
{"emote", &Commands::emote, -1, true},
+ {"emotepet", &Commands::emotePet, -1, true},
{"away", &Commands::away, -1, true},
{"pseudoaway", &Commands::pseudoAway, -1, true},
{"follow", &Commands::follow, -1, true},