diff --git a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp index 491dd4e9a..fc15e1e38 100644 --- a/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp +++ b/src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp @@ -42,7 +42,7 @@ enum Spells enum UniqueEvents { - EVENT_BERSERK = 0 + EVENT_BERSERK = 1 }; enum Hal_CreatureIds @@ -137,6 +137,14 @@ struct boss_halazzi : public BossAI me->UpdateEntry(NPC_HALAZZI_TROLL); } + void JustSummoned(Creature* summon) override + { + BossAI::JustSummoned(summon); + + if (summon->GetEntry() == NPC_TOTEM) + summon->Attack(me->GetVictim(), false); + } + void AttackStart(Unit* who) override { if (_phase != PHASE_MERGE)