diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index a6d9d56a2..3a44a58b9 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -328,4 +328,14 @@ impHandler(commandOutfit) return false; } +impHandler(commandEmote) +{ + if (localPlayer) + { + localPlayer->emote(static_cast<uint8_t>(atoi(event.args.c_str()))); + return true; + } + return false; +} + } // namespace Actions |