diff options
Diffstat (limited to 'src/net/tmwa/pethandler.cpp')
-rw-r--r-- | src/net/tmwa/pethandler.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/tmwa/pethandler.cpp b/src/net/tmwa/pethandler.cpp index e71420f15..d260cea3a 100644 --- a/src/net/tmwa/pethandler.cpp +++ b/src/net/tmwa/pethandler.cpp @@ -20,8 +20,11 @@ #include "net/tmwa/pethandler.h" +#include "gui/widgets/tabs/chattab.h" + #include "net/net.h" +#include "net/tmwa/chathandler.h" #include "net/tmwa/protocol.h" #include "debug.h" @@ -59,4 +62,10 @@ void PetHandler::spawn(const Being *const being A_UNUSED, { } +void PetHandler::emote(const uint8_t emoteId) const +{ + Net::getChatHandler()->talk("\302\202\302e" + toString( + static_cast<int>(emoteId)), GENERAL_CHANNEL); +} + } // namespace TmwAthena |