diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-12-18 17:19:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-12-18 17:19:28 +0300 |
commit | 722404ad29f268ef8861c62b038c4e14652c7555 (patch) | |
tree | f38d57adaba7bbe103f48bf3fd0b92c99d2c5329 /src/net/ea/partyhandler.cpp | |
parent | ba997be747666c74c46c734cb636a8de84c582b3 (diff) | |
download | plus-722404ad29f268ef8861c62b038c4e14652c7555.tar.gz plus-722404ad29f268ef8861c62b038c4e14652c7555.tar.bz2 plus-722404ad29f268ef8861c62b038c4e14652c7555.tar.xz plus-722404ad29f268ef8861c62b038c4e14652c7555.zip |
Ad comments for "unused" data from server packets.
Fix some guild and worlds packets.
Diffstat (limited to 'src/net/ea/partyhandler.cpp')
-rw-r--r-- | src/net/ea/partyhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/partyhandler.cpp b/src/net/ea/partyhandler.cpp index 8373cb1c4..556e72c8d 100644 --- a/src/net/ea/partyhandler.cpp +++ b/src/net/ea/partyhandler.cpp @@ -320,7 +320,7 @@ void PartyHandler::processPartyMove(Net::MessageIn &msg) m = Ea::taParty->getMember(id); if (m) { - msg.skip(4); + msg.skip(4); // 0 m->setX(msg.readInt16()); // x m->setY(msg.readInt16()); // y m->setOnline(msg.readInt8()); // online (if 0) @@ -330,7 +330,7 @@ void PartyHandler::processPartyMove(Net::MessageIn &msg) } else { - msg.skip(4); + msg.skip(4); // 0 msg.readInt16(); // x msg.readInt16(); // y msg.readInt8(); // online (if 0) |