summaryrefslogtreecommitdiff
path: root/src/net/eathena/chathandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-07 17:21:56 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-07 17:21:56 +0300
commite3f53de7742609f7354869b066076e17f9774a11 (patch)
treee9c5b498eb9f890fb7ae3479b78eac37aefbd67e /src/net/eathena/chathandler.cpp
parentd18a2a0ed390162b771fea7d4c101f37f6be247a (diff)
downloadplus-e3f53de7742609f7354869b066076e17f9774a11.tar.gz
plus-e3f53de7742609f7354869b066076e17f9774a11.tar.bz2
plus-e3f53de7742609f7354869b066076e17f9774a11.tar.xz
plus-e3f53de7742609f7354869b066076e17f9774a11.zip
eathena: fix packet SMSG_WHISPER_RESPONSE 0x09df.
Diffstat (limited to 'src/net/eathena/chathandler.cpp')
-rw-r--r--src/net/eathena/chathandler.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp
index 5e1a0679e..ad8c3bcdc 100644
--- a/src/net/eathena/chathandler.cpp
+++ b/src/net/eathena/chathandler.cpp
@@ -334,6 +334,7 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg)
BLOCK_START("ChatHandler::processWhisperResponse")
const uint8_t type = msg.readUInt8("response");
+ msg.readInt32("unknown");
processWhisperResponseContinue(type);
}