summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/eathena/beinghandler.cpp12
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();