mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
fix(Scripts/ZulAman): Halazzi Lynx Ability Timers (#20761)
fix(Scripts/ZulAman)HalazziLynxAbilityTimers
This commit is contained in:
@@ -189,15 +189,15 @@ struct boss_halazzi : public BossAI
|
||||
}
|
||||
|
||||
scheduler.CancelGroup(GROUP_MERGE);
|
||||
scheduler.Schedule(16s, GROUP_LYNX, [this](TaskContext context)
|
||||
{
|
||||
DoCastSelf(SPELL_FRENZY);
|
||||
context.Repeat(10s, 15s);
|
||||
}).Schedule(20s, GROUP_LYNX, [this](TaskContext context)
|
||||
scheduler.Schedule(5s, 15s, GROUP_LYNX, [this](TaskContext context)
|
||||
{
|
||||
Talk(SAY_SABER);
|
||||
DoCastVictim(SPELL_SABER_LASH, true);
|
||||
context.Repeat(30s);
|
||||
context.Repeat();
|
||||
}).Schedule(20s, 35s, GROUP_LYNX, [this](TaskContext context)
|
||||
{
|
||||
DoCastSelf(SPELL_FRENZY);
|
||||
context.Repeat();
|
||||
});
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user