Skip to content

Commit

Permalink
fix(Scripts/ZulAman): Halazzi Lynx Ability Timers (azerothcore#20761)
Browse files Browse the repository at this point in the history
fix(Scripts/ZulAman)HalazziLynxAbilityTimers
  • Loading branch information
sogladev authored Nov 29, 2024
1 parent dd3eb38 commit d8123cb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/server/scripts/EasternKingdoms/ZulAman/boss_halazzi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d8123cb

Please sign in to comment.