diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/homunculusrecv.cpp | 1 | ||||
-rw-r--r-- | src/net/eathena/mercenaryrecv.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/net/eathena/homunculusrecv.cpp b/src/net/eathena/homunculusrecv.cpp index 4f6551488..2366b639b 100644 --- a/src/net/eathena/homunculusrecv.cpp +++ b/src/net/eathena/homunculusrecv.cpp @@ -151,6 +151,7 @@ void HomunculusRecv::processHomunculusInfo(Net::MessageIn &msg) PlayerInfo::setStatBase(Attributes::HOMUN_ATTACK_RANGE, range); + PlayerInfo::updateAttrs(); HomunculusInfo *const info = PlayerInfo::getHomunculus(); if (!info) // we can't find homunculus being because id is missing return; diff --git a/src/net/eathena/mercenaryrecv.cpp b/src/net/eathena/mercenaryrecv.cpp index 350ba5967..3f338e61a 100644 --- a/src/net/eathena/mercenaryrecv.cpp +++ b/src/net/eathena/mercenaryrecv.cpp @@ -90,6 +90,8 @@ void MercenaryRecv::processMercenaryInfo(Net::MessageIn &msg) const int range = msg.readInt16("attack range"); PlayerInfo::setStatBase(Attributes::MERC_ATTACK_RANGE, range); + PlayerInfo::updateAttrs(); + if (dstBeing && localPlayer) { MercenaryInfo *const mercenary = new MercenaryInfo; |