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.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 611555ba5..dd232305c 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -81,6 +81,7 @@ ChatHandler::ChatHandler() :
SMSG_CHAT_DESTROY,
SMSG_CHAT_JOIN_FAILED,
SMSG_CHAT_ADD_MEMBER,
+ SMSG_CHAT_SETTINGS,
0
};
handledMessages = _messages;
@@ -181,6 +182,10 @@ void ChatHandler::handleMessage(Net::MessageIn &msg)
processChatAddMember(msg);
break;
+ case SMSG_CHAT_SETTINGS:
+ processChatSettings(msg);
+ break;
+
default:
break;
}
@@ -816,4 +821,16 @@ void ChatHandler::processChatAddMember(Net::MessageIn &msg)
msg.readString(24, "name");
}
+void ChatHandler::processChatSettings(Net::MessageIn &msg)
+{
+ UNIMPLIMENTEDPACKET;
+ const int sz = msg.readInt16("len") - 17;
+ msg.readInt32("owner id");
+ msg.readInt32("chat id");
+ msg.readInt16("limit");
+ msg.readInt16("users");
+ msg.readUInt8("type");
+ msg.readString(sz, "title");
+}
+
} // namespace EAthena