summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-09-25 09:16:08 +0300
committerAndrei Karas <akaras@inbox.ru>2018-09-25 09:16:08 +0300
commit2d3051fc41bf717aeb9563ad607ac9dab58e87fe (patch)
treeefe199826abec8d717e7656fd3622935d49cbe7c
parent4325c90ab0845d3c98f09917ff51bdb0a139c2d7 (diff)
downloadplus-2d3051fc41bf717aeb9563ad607ac9dab58e87fe.tar.gz
plus-2d3051fc41bf717aeb9563ad607ac9dab58e87fe.tar.bz2
plus-2d3051fc41bf717aeb9563ad607ac9dab58e87fe.tar.xz
plus-2d3051fc41bf717aeb9563ad607ac9dab58e87fe.zip
Add missing field into ChatRecv::processWhisperResponse.
-rw-r--r--src/net/eathena/chatrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/chatrecv.cpp b/src/net/eathena/chatrecv.cpp
index 66edbebe7..fdcdfe8ed 100644
--- a/src/net/eathena/chatrecv.cpp
+++ b/src/net/eathena/chatrecv.cpp
@@ -354,7 +354,7 @@ void ChatRecv::processWhisperResponse(Net::MessageIn &msg)
const uint8_t type = msg.readUInt8("response");
if (msg.getVersion() >= 20131223)
- msg.readInt32("unknown");
+ msg.readBeingId("being id");
if (type == 1 && (chatWindow != nullptr))
{
const std::string nick = Ea::ChatRecv::getLastWhisperNick();