diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-07 00:11:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-07 00:11:30 +0300 |
commit | 0fd358d0ebeb02f232f51eb669959c4d210f15cb (patch) | |
tree | aa108b3cc60caafb9e57b3ab991bf9cd10e3728b /src/net/eathena | |
parent | 6cd9fbf483eedbdc782688c3a0507e23930c4d5b (diff) | |
download | plus-0fd358d0ebeb02f232f51eb669959c4d210f15cb.tar.gz plus-0fd358d0ebeb02f232f51eb669959c4d210f15cb.tar.bz2 plus-0fd358d0ebeb02f232f51eb669959c4d210f15cb.tar.xz plus-0fd358d0ebeb02f232f51eb669959c4d210f15cb.zip |
eathena: read whole packet in processBeingChangeLook.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/beinghandler.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index 7104298a8..31cc4fc6a 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -264,9 +264,6 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const Being *const dstBeing = actorManager->findBeing( msg.readInt32("being id")); - if (!dstBeing) - return; - const uint8_t type = msg.readUInt8("type"); int id = 0; unsigned int id2 = 0U; @@ -281,13 +278,14 @@ void BeingHandler::processBeingChangeLook(Net::MessageIn &msg) const else { // SMSG_BEING_CHANGE_LOOKS2 id = msg.readInt16("id1"); - if (type == 2) - id2 = msg.readInt16("id2"); - else + id2 = msg.readInt16("id2"); + if (type != 2) id2 = 1; -// color.clear(); } + if (!dstBeing) + return; + if (dstBeing->getType() == ActorType::PLAYER) dstBeing->setOtherTime(); |