diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-01 22:16:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-01 22:16:54 +0300 |
commit | d7069a3abc8da077eb7aa2c23e5f7e37f6f3ee97 (patch) | |
tree | b30cb1aa3372f997c42ad1476caeaadf3a081552 /src/actormanager.cpp | |
parent | 64564d6c9cd145f4edf9ebaa260b50f13bad35bd (diff) | |
download | plus-d7069a3abc8da077eb7aa2c23e5f7e37f6f3ee97.tar.gz plus-d7069a3abc8da077eb7aa2c23e5f7e37f6f3ee97.tar.bz2 plus-d7069a3abc8da077eb7aa2c23e5f7e37f6f3ee97.tar.xz plus-d7069a3abc8da077eb7aa2c23e5f7e37f6f3ee97.zip |
Allow see homunculuses name.
Diffstat (limited to 'src/actormanager.cpp')
-rw-r--r-- | src/actormanager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index fb5d2a7b1..b85c4fa17 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -276,6 +276,7 @@ Being *ActorManager::createBeing(const BeingId id, #ifdef EATHENA_SUPPORT || type == ActorType::Mercenary || type == ActorType::Pet + || type == ActorType::Homunculus #endif || type == ActorType::Npc) { @@ -299,6 +300,7 @@ Being *ActorManager::createBeing(const BeingId id, beingHandler->requestNameById(id); } } + if (type == ActorType::Player) { if (socialWindow) |