diff options
Diffstat (limited to 'src/net/eathena/beinghandler.cpp')
-rw-r--r-- | src/net/eathena/beinghandler.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/net/eathena/beinghandler.cpp b/src/net/eathena/beinghandler.cpp index e2617dc98..9707475da 100644 --- a/src/net/eathena/beinghandler.cpp +++ b/src/net/eathena/beinghandler.cpp @@ -28,6 +28,8 @@ #include "party.h" #include "being/localplayer.h" +#include "being/mercenaryinfo.h" +#include "being/playerinfo.h" #include "input/keyboardconfig.h" @@ -325,7 +327,14 @@ Being *BeingHandler::createBeing2(const int id, if (job == 45 && beingType == BeingType::NPC_EVENT) type = ActorType::Portal; - return actorManager->createBeing(id, type, job); + Being *const being = actorManager->createBeing(id, type, job); + if (beingType == BeingType::MERSOL) + { + MercenaryInfo *const info = PlayerInfo::getMercenary(); + if (info && info->id == id) + PlayerInfo::setMercenaryBeing(being); + } + return being; } void BeingHandler::undress(Being *const being) const |