summaryrefslogtreecommitdiff
path: root/src/net/eathena/chathandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-13 19:07:55 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-13 19:07:55 +0300
commit3aebacaab2e110820994b7e0849bf65fa24c7c8c (patch)
treea71d29a6e12ed2ef72ebc469527c2dfb3c9b7687 /src/net/eathena/chathandler.cpp
parent78bda42e4b456ad7118b8e46a07c77371f90b615 (diff)
downloadplus-3aebacaab2e110820994b7e0849bf65fa24c7c8c.tar.gz
plus-3aebacaab2e110820994b7e0849bf65fa24c7c8c.tar.bz2
plus-3aebacaab2e110820994b7e0849bf65fa24c7c8c.tar.xz
plus-3aebacaab2e110820994b7e0849bf65fa24c7c8c.zip
Split processChat into two functions with net code and without.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r--src/net/eathena/chathandler.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 22ec532ce..31a585cf9 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -280,7 +280,11 @@ void ChatHandler::processChat(Net::MessageIn &msg)
return;
}
- std::string chatMsg = msg.readRawString(chatMsgLength, "message");
+ processChatContinue(msg.readRawString(chatMsgLength, "message"));
+}
+
+void ChatHandler::processChatContinue(std::string chatMsg)
+{
const size_t pos = chatMsg.find(" : ", 0);
bool allow(true);