diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-20 13:41:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-22 00:08:12 +0300 |
commit | 5a8b8f4ad56914e1c75acd29807897ba1433c96f (patch) | |
tree | 4e29e8fee3e794ba4b69e383d3f0e12e6e8d62e0 /src/net/eathena/chathandler.cpp | |
parent | 54ee7d240a8ab3a328d0f3f06f3b9627d4727c90 (diff) | |
download | plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.gz plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.bz2 plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.tar.xz plus-5a8b8f4ad56914e1c75acd29807897ba1433c96f.zip |
add netcode support for channels (for now evol only).
for now any channel ignored and used as general tab.
also change netcode version to 8.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index d6ed2c9be..0f62411b3 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -81,12 +81,12 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) // Received speech from being case SMSG_BEING_CHAT: - processBeingChat(msg); + processBeingChat(msg, false); break; case SMSG_PLAYER_CHAT: case SMSG_GM_CHAT: - processChat(msg, msg.getId() == SMSG_PLAYER_CHAT); + processChat(msg, msg.getId() == SMSG_PLAYER_CHAT, false); break; case SMSG_MVP: |