diff options
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 353d36856..e2aa51ece 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -79,6 +79,7 @@ ChatHandler::ChatHandler() : SMSG_IGNORE_NICK_ACK, SMSG_CHAT_CREATE_ACK, SMSG_CHAT_DESTROY, + SMSG_CHAT_JOIN_FAILED, 0 }; handledMessages = _messages; @@ -171,6 +172,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) processChatDestroy(msg); break; + case SMSG_CHAT_JOIN_FAILED: + processChatJoinFailed(msg); + break; + default: break; } @@ -793,4 +798,10 @@ void ChatHandler::processChatDestroy(Net::MessageIn &msg) msg.readInt32("chat id"); } +void ChatHandler::processChatJoinFailed(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readUInt8("flag"); +} + } // namespace EAthena |