From 8b97440450ccbebbcb376e19e7fcd60bdcb1523d Mon Sep 17 00:00:00 2001 From: Dresmyr Date: Thu, 18 Jul 2019 17:39:15 -0400 Subject: [PATCH] fix(Core/Boss Scripts): Update boss_hodir.cpp - Fix ice shards cast speed in 10 man (#2050) --- src/server/scripts/Northrend/Ulduar/Ulduar/boss_hodir.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}