summaryrefslogtreecommitdiff
path: root/src/net/eathena/beingrecv.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-01 03:54:54 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-01 03:54:54 +0300
commita5ce1a9872c4c34af4d4336e3fd512036511c659 (patch)
treeb4c9d75f1929f062f6bb9390edac1378c9bb2967 /src/net/eathena/beingrecv.cpp
parent2b2196b1aa2919e71dc2cd8b78a068c7e28a0a0c (diff)
downloadplus-a5ce1a9872c4c34af4d4336e3fd512036511c659.tar.gz
plus-a5ce1a9872c4c34af4d4336e3fd512036511c659.tar.bz2
plus-a5ce1a9872c4c34af4d4336e3fd512036511c659.tar.xz
plus-a5ce1a9872c4c34af4d4336e3fd512036511c659.zip
Fix reading packet SMSG_BEING_FAKE_NAME.
Diffstat (limited to 'src/net/eathena/beingrecv.cpp')
-rw-r--r--src/net/eathena/beingrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp
index 5ab7bf5e3..b6e30d7fc 100644
--- a/src/net/eathena/beingrecv.cpp
+++ b/src/net/eathena/beingrecv.cpp
@@ -1331,7 +1331,7 @@ void BeingRecv::processBeingFakeName(Net::MessageIn &msg)
msg.readCoordinates(x, y, dir, "position");
msg.readUInt8("sx");
msg.readUInt8("sy");
- msg.skip(4, "unused");
+ msg.skip(3, "unused");
Being *const dstBeing = createBeing2(msg, id, job, type);
if (!dstBeing)