mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
Scripts/Ulduar: Fix Freya's Nature Bomb appearing prematurly during the 6th Wave (by Svannon)
Closes #4615
This commit is contained in:
@@ -436,7 +436,7 @@ class boss_freya : public CreatureScript
|
||||
break;
|
||||
case EVENT_WAVE:
|
||||
SpawnWave();
|
||||
if (waveCount < 6)
|
||||
if (waveCount <= 6) // If set to 6 The Bombs appear during the Final Add wave
|
||||
events.ScheduleEvent(EVENT_WAVE, WAVE_TIME);
|
||||
else
|
||||
events.ScheduleEvent(EVENT_NATURE_BOMB, urand(10000, 20000));
|
||||
|
||||
Reference in New Issue
Block a user