Fix build

This commit is contained in:
luis
2026-09-13 19:27:43 -03:00
parent ca8014581d
commit 46f6579986
@@ -114,11 +114,11 @@ struct npc_brh_two_caster : public ScriptedAI
{ {
case EVENT_DW_A: case EVENT_DW_A:
DoCastVictim(SpellA); DoCastVictim(SpellA);
_events.ScheduleEvent(EVENT_DW_A, CooldownA); _events.ScheduleEvent(EVENT_DW_A, Milliseconds(CooldownA));
break; break;
case EVENT_DW_B: case EVENT_DW_B:
DoCastVictim(SpellB); DoCastVictim(SpellB);
_events.ScheduleEvent(EVENT_DW_B, CooldownB); _events.ScheduleEvent(EVENT_DW_B, Milliseconds(CooldownB));
break; break;
default: default:
break; break;
@@ -157,7 +157,7 @@ struct npc_brh_one_spell : public ScriptedAI
if (eventId == EVENT_DW_A) if (eventId == EVENT_DW_A)
{ {
DoCastVictim(SpellA); DoCastVictim(SpellA);
_events.ScheduleEvent(EVENT_DW_A, CooldownA); _events.ScheduleEvent(EVENT_DW_A, Milliseconds(CooldownA));
} }
} }
} }