fix(Scripts/HoR): clear IMMUNE_TO_PC before engaging Falric and Marwyn (#25273)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Andrew
2026-03-28 07:55:16 -03:00
committed by GitHub
parent 27ee642855
commit ae6e8e0462
2 changed files with 2 additions and 0 deletions

View File

@@ -78,6 +78,7 @@ struct boss_falric : public BossAI
me->m_Events.AddEventAtOffset([this]()
{
_startingFight = false;
me->SetImmuneToPC(false);
me->SetInCombatWithZone();
}, 8s);
}

View File

@@ -78,6 +78,7 @@ struct boss_marwyn : public BossAI
me->m_Events.AddEventAtOffset([this]()
{
_startingFight = false;
me->SetImmuneToPC(false);
me->SetInCombatWithZone();
}, 8s);
}