fix(Scripts/UBRS): Correct Drakkisath's guard abilities not being cast (#8957)

This commit is contained in:
Skjalf
2021-11-05 03:33:45 -03:00
committed by GitHub
parent 6ef4a713aa
commit 16489b56fe

View File

@@ -198,11 +198,11 @@ public:
break;
case EVENT_KNOCKDOWN:
DoCastVictim(SPELL_KNOCKDOWN);
_events.ScheduleEvent(EVENT_MORTAL_STRIKE, urand(11200, 25700));
_events.ScheduleEvent(EVENT_KNOCKDOWN, urand(11200, 25700));
break;
case EVENT_STRIKE:
DoCastVictim(SPELL_STRIKE);
_events.ScheduleEvent(EVENT_MORTAL_STRIKE, 9000);
_events.ScheduleEvent(EVENT_STRIKE, 9000);
break;
}