From f99ef6f9d8c6db8e9c772580f36a57f6afff564e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 10 Mar 2015 20:00:18 +0300 Subject: eathena: add partial support for packet SMSG_CHAT_DESTROY 0x00d8. --- src/net/eathena/chathandler.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/net/eathena/chathandler.cpp') diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 18cfa32cd..353d36856 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -78,6 +78,7 @@ ChatHandler::ChatHandler() : SMSG_CHAT_JOIN_CHANNEL, SMSG_IGNORE_NICK_ACK, SMSG_CHAT_CREATE_ACK, + SMSG_CHAT_DESTROY, 0 }; handledMessages = _messages; @@ -166,6 +167,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) processChatCreateAck(msg); break; + case SMSG_CHAT_DESTROY: + processChatDestroy(msg); + break; + default: break; } @@ -782,4 +787,10 @@ void ChatHandler::processChatCreateAck(Net::MessageIn &msg) msg.readUInt8("flag"); } +void ChatHandler::processChatDestroy(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt32("chat id"); +} + } // namespace EAthena -- cgit v1.2.3-70-g09d2