Skip to content

Commit 07a6327

Browse files
authored
fix(Script/BlackTemple): Spawn Shadow Demons 30s into phase 4 (azerothcore#20335)
* schedule phase 4 demons * whitespace
1 parent fb88686 commit 07a6327

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/server/scripts/Outland/BlackTemple/boss_illidan.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,10 @@ struct boss_illidan_stormrage : public BossAI
569569
case PHASE_DEMON:
570570
{
571571
scheduler.CancelAll();
572-
DoCastSelf(SPELL_SUMMON_SHADOW_DEMON, true);
572+
573+
ScheduleTimedEvent(30s, [&] {
574+
DoCastSelf(SPELL_SUMMON_SHADOW_DEMON, true);
575+
}, 100s);
573576

574577
ScheduleTimedEvent(1s, 2500ms, [&] {
575578
DoCastVictim(SPELL_SHADOW_BLAST);

0 commit comments

Comments
 (0)