fix(Scripts/Naxxramas): Adjust spell timers for Naxxramas Worshipper and refine Faerlina aggro logic (#24210)

This commit is contained in:
Gultask
2025-12-29 00:37:26 -03:00
committed by GitHub
parent 6be2dad01a
commit 16bbeadd6e
2 changed files with 58 additions and 2 deletions

View File

@@ -88,10 +88,12 @@ public:
void JustEngagedWith(Unit* who) override
{
BossAI::JustEngagedWith(who);
me->CallForHelp(VISIBLE_RANGE);
summons.DoZoneInCombat();
Talk(SAY_AGGRO);
scheduler.Schedule(1200ms, [this](TaskContext /*context*/) {
this->summons.DoZoneInCombat();
});
ScheduleTimedEvent(7s, 15s, [&]{
if (!me->HasAura(SPELL_WIDOWS_EMBRACE))
DoCastVictim(SPELL_POISON_BOLT_VOLLEY);