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 9b47a7279..ea56d8214 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -86,6 +86,7 @@ ChatHandler::ChatHandler() :
SMSG_CHAT_ADD_MEMBER,
SMSG_CHAT_SETTINGS,
SMSG_CHAT_ROLE_CHANGE,
+ SMSG_MANNER_MESSAGE,
0
};
handledMessages = _messages;
@@ -206,6 +207,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg)
processChatRoleChange(msg);
break;
+ case SMSG_MANNER_MESSAGE:
+ processMannerMessage(msg);
+ break;
+
default:
break;
}
@@ -876,4 +881,10 @@ void ChatHandler::processMVPNoItem(Net::MessageIn &msg)
{
}
+void ChatHandler::processMannerMessage(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ msg.readInt32("type");
+}
+
} // namespace EAthena