diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/EasternKingdoms/BlackrockSpire/boss_pyroguard_emberseer.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/server/scripts/EasternKingdoms/BlackrockSpire/boss_pyroguard_emberseer.cpp b/src/server/scripts/EasternKingdoms/BlackrockSpire/boss_pyroguard_emberseer.cpp index fc14cbe76e7..88f915c5224 100644 --- a/src/server/scripts/EasternKingdoms/BlackrockSpire/boss_pyroguard_emberseer.cpp +++ b/src/server/scripts/EasternKingdoms/BlackrockSpire/boss_pyroguard_emberseer.cpp @@ -167,8 +167,10 @@ public: void SpellHit(Unit* /*caster*/, SpellInfo const* spell) { if (spell->Id == SPELL_ENCAGE_EMBERSEER) - if (me->GetAuraCount(SPELL_ENCAGED_EMBERSEER) == 0) - DoCast(me, SPELL_ENCAGED_EMBERSEER); + { + if (!me->GetAuraCount(SPELL_ENCAGED_EMBERSEER)) + me->CastSpell(me, SPELL_ENCAGED_EMBERSEER); + } if (spell->Id == SPELL_EMBERSEER_GROWING_TRIGGER) { |