diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-18 13:25:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-18 13:25:34 +0300 |
commit | b8fd168c06687338268226ac4e8292549c31bbfc (patch) | |
tree | c71fae32c9eb506c900fce8e7dd76db6eb86eabb /src/net/ea/beingrecv.cpp | |
parent | 718cc20f00d8724c79d2c0e928696b476119af6d (diff) | |
download | plus-b8fd168c06687338268226ac4e8292549c31bbfc.tar.gz plus-b8fd168c06687338268226ac4e8292549c31bbfc.tar.bz2 plus-b8fd168c06687338268226ac4e8292549c31bbfc.tar.xz plus-b8fd168c06687338268226ac4e8292549c31bbfc.zip |
Fix reading packet SMSG_BEING_MOVE3 for non existing player.
Diffstat (limited to 'src/net/ea/beingrecv.cpp')
-rw-r--r-- | src/net/ea/beingrecv.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/net/ea/beingrecv.cpp b/src/net/ea/beingrecv.cpp index f69a2f003..2a0351ef2 100644 --- a/src/net/ea/beingrecv.cpp +++ b/src/net/ea/beingrecv.cpp @@ -455,6 +455,7 @@ void BeingRecv::processBeingMove3(Net::MessageIn &msg) if (!dstBeing) { DEBUGLOGSTR("invisible player?"); + msg.readInt16("speed"); msg.readInt16("x"); msg.readInt16("y"); msg.readBytes(len, "moving path"); |