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.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 515a5923d..4e4231561 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -67,6 +67,7 @@ ChatHandler::ChatHandler() :
SMSG_GM_CHAT2,
SMSG_MVP_EFFECT,
SMSG_MVP_ITEM,
+ SMSG_MVP_EXP,
SMSG_IGNORE_ALL_RESPONSE,
SMSG_COLOR_MESSAGE,
SMSG_CHAT_IGNORE_LIST,
@@ -144,6 +145,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg)
processMVPItem(msg);
break;
+ case SMSG_MVP_EXP:
+ processMVPExp(msg);
+ break;
+
case SMSG_IGNORE_ALL_RESPONSE:
processIgnoreAllResponse(msg);
break;
@@ -856,4 +861,10 @@ void ChatHandler::processMVPItem(Net::MessageIn &msg)
msg.readInt16("item id");
}
+void ChatHandler::processMVPExp(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readInt32("exo");
+}
+
} // namespace EAthena