mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-03 02:53:48 +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.CancelGroup(GROUP_MERGE);
|
||||||
scheduler.Schedule(16s, GROUP_LYNX, [this](TaskContext context)
|
scheduler.Schedule(5s, 15s, GROUP_LYNX, [this](TaskContext context)
|
||||||
{
|
|
||||||
DoCastSelf(SPELL_FRENZY);
|
|
||||||
context.Repeat(10s, 15s);
|
|
||||||
}).Schedule(20s, GROUP_LYNX, [this](TaskContext context)
|
|
||||||
{
|
{
|
||||||
Talk(SAY_SABER);
|
Talk(SAY_SABER);
|
||||||
DoCastVictim(SPELL_SABER_LASH, true);
|
DoCastVictim(SPELL_SABER_LASH, true);
|
||||||
context.Repeat(30s);
|
context.Repeat();
|
||||||
|
}).Schedule(20s, 35s, GROUP_LYNX, [this](TaskContext context)
|
||||||
|
{
|
||||||
|
DoCastSelf(SPELL_FRENZY);
|
||||||
|
context.Repeat();
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user