summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
Diffstat (limited to 'src/being')
-rw-r--r--src/being/actortype.h3
-rw-r--r--src/being/being.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/being/actortype.h b/src/being/actortype.h
index f39216d32..6b6acce88 100644
--- a/src/being/actortype.h
+++ b/src/being/actortype.h
@@ -35,7 +35,8 @@ namespace ActorType
LocalPet,
Pet,
Avatar,
- Mercenary
+ Mercenary,
+ Homunculus
};
} // namespace ActorType
diff --git a/src/being/being.cpp b/src/being/being.cpp
index fd71e5f9a..869d7d8b1 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -303,7 +303,7 @@ void Being::setSubtype(const uint16_t subtype, const uint8_t look)
mSubType = subtype;
mLook = look;
- if (mType == ActorType::Monster)
+ if (mType == ActorType::Monster || mType == ActorType::Homunculus)
{
mInfo = MonsterDB::get(mSubType);
if (mInfo)