diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-09-14 22:42:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-14 22:42:47 +0200 |
commit | 025002b90789e3f506e072e68cfa68c90eef296a (patch) | |
tree | 51282150ee009be610c845b723c43b254bf46eac /src | |
parent | 6913286cb9a367321b9876c789d264a0dd4ed300 (diff) |
Core/Creature: enable pet bar for TempSummons with category SUMMON_CATEGORY_PET.
Thanks @ariel- for helping with the research (although I'm two months late).
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Entities/Creature/TemporarySummon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Creature/TemporarySummon.cpp b/src/server/game/Entities/Creature/TemporarySummon.cpp index 12e3af3c290..c2290baa850 100644 --- a/src/server/game/Entities/Creature/TemporarySummon.cpp +++ b/src/server/game/Entities/Creature/TemporarySummon.cpp @@ -324,7 +324,7 @@ Guardian::Guardian(SummonPropertiesEntry const* properties, Unit* owner, bool is { memset(m_statFromOwner, 0, sizeof(float)*MAX_STATS); m_unitTypeMask |= UNIT_MASK_GUARDIAN; - if (properties && properties->Type == SUMMON_TYPE_PET) + if (properties && (properties->Type == SUMMON_TYPE_PET || properties->Category == SUMMON_CATEGORY_PET)) { m_unitTypeMask |= UNIT_MASK_CONTROLABLE_GUARDIAN; InitCharmInfo(); |