diff options
Diffstat (limited to 'src/net/eathena/homunculushandler.cpp')
-rw-r--r-- | src/net/eathena/homunculushandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/homunculushandler.cpp b/src/net/eathena/homunculushandler.cpp index 7eafac3cc..42426b57f 100644 --- a/src/net/eathena/homunculushandler.cpp +++ b/src/net/eathena/homunculushandler.cpp @@ -300,4 +300,10 @@ void HomunculusHandler::talk(const std::string &restrict text) const outMsg.writeInt8(0, "zero byte"); } +void HomunculusHandler::emote(const uint8_t emoteId) const +{ + createOutPacket(CMSG_HOMMERC_EMOTE); + outMsg.writeInt8(emoteId, "emote id"); +} + } // namespace EAthena |