diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp index 7521752c4..67eba6a03 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp @@ -415,7 +415,7 @@ public: me->PlayDirectSound(SOUND_HODIR_FLASH_FREEZE, 0); SmallIcicles(false); events.RepeatEvent(55000 + urand(0,10000)); - events.ScheduleEvent(EVENT_SMALL_ICICLES_ENABLE, 12000); + events.ScheduleEvent(EVENT_SMALL_ICICLES_ENABLE, Is25ManRaid() ? 12000 : 24000); events.ScheduleEvent(EVENT_FROZEN_BLOWS, 15000); events.RescheduleEvent(EVENT_FREEZE, 20000); } @@ -1554,4 +1554,4 @@ void AddSC_boss_hodir() new achievement_staying_buffed_all_winter_25(); new spell_hodir_toasty_fire(); new spell_hodir_starlight(); -} \ No newline at end of file +}