diff options
Diffstat (limited to 'src/actions/commands.cpp')
-rw-r--r-- | src/actions/commands.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index e0514f902..ee04acc65 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -36,6 +36,7 @@ #include "being/playerinfo.h" #include "being/playerrelations.h" +#include "gui/chatconsts.h" #include "gui/dialogsmanager.h" #include "gui/gui.h" #include "gui/popupmanager.h" @@ -663,4 +664,14 @@ impHandler(talkRaw) return true; } +impHandler(talkPet) +{ + // in future probably need add channel detection + if (!localPlayer->getPets().empty()) + Net::getChatHandler()->talkPet(event.args, GENERAL_CHANNEL); + else + Net::getChatHandler()->talk(event.args, GENERAL_CHANNEL); + return true; +} + } // namespace Actions |