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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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);
}