diff options
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index 535f65091..4fdcf7ad3 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1450,7 +1450,10 @@ void BeingRecv::processBeingSpecialEffect(Net::MessageIn &msg) const BeingId id = msg.readBeingId("being id"); Being *const being = actorManager->findBeing(id); if (being == nullptr) + { + msg.readInt32("effect type"); return; + } const int effectType = msg.readInt32("effect type"); |