fix(Scripts/Naxx): Fix Heigan evading and regenerating HP at end of Phase 2 (#25223)

Co-authored-by: blinkysc <blinkysc@users.noreply.github.com>
This commit is contained in:
blinkysc
2026-03-25 13:05:57 -05:00
committed by GitHub
parent 35051f935c
commit 20073f7342

View File

@@ -159,13 +159,13 @@ struct boss_heigan : public BossAI
void UpdateAI(uint32 diff) override void UpdateAI(uint32 diff) override
{ {
if (!UpdateVictim()) if (!UpdateVictim())
{
return; return;
}
_eruptionScheduler.Update(diff); _eruptionScheduler.Update(diff);
BossAI::UpdateAI(diff); scheduler.Update(diff);
DoMeleeAttackIfReady();
} }
void CheckSafetyDance() void CheckSafetyDance()