summaryrefslogtreecommitdiff
path: root/src/net/eathena/chathandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r--src/net/eathena/chathandler.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 6ed5dc30c..d03e3b304 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -69,6 +69,7 @@ ChatHandler::ChatHandler() :
SMSG_FORMAT_MESSAGE_SKILL,
SMSG_CHAT_DISPLAY,
SMSG_CHAT_JOIN_ACK,
+ SMSG_CHAT_LEAVE,
0
};
handledMessages = _messages;
@@ -141,6 +142,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg)
processChatJoinAck(msg);
break;
+ case SMSG_CHAT_LEAVE:
+ processChatLeave(msg);
+ break;
+
default:
break;
}
@@ -496,4 +501,11 @@ void ChatHandler::processChatJoinAck(Net::MessageIn &msg)
}
}
+void ChatHandler::processChatLeave(Net::MessageIn &msg)
+{
+ msg.readInt16("users");
+ msg.readString(24, "name");
+ msg.readUInt8("flag"); // 0 - left, 1 - kicked
+}
+
} // namespace EAthena