fix(Scripts/SunwellPlateau): Fix Brutallus burn timer (#21423)

This commit is contained in:
Andrew 2025-02-12 20:05:32 -03:00 committed by GitHub
parent 3baa00ae06
commit 0f0b341d9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,10 +91,10 @@ struct boss_brutallus : public BossAI
Talk(YELL_LOVE);
}, 30s);
ScheduleTimedEvent(45s, [&] {
ScheduleTimedEvent(20s, [&] {
if (Unit* target = SelectTarget(SelectTargetMethod::Random, 0, 100.0f, true, true, -SPELL_BURN_DAMAGE))
DoCast(target, SPELL_BURN);
}, 1min);
}, 20s);
me->m_Events.AddEventAtOffset([&] {
DoCastSelf(SPELL_BERSERK, true);