fix(Core/Boss Scripts): Update boss_hodir.cpp - Fix ice shards cast speed in 10 man (#2050)

This commit is contained in:
Dresmyr
2019-07-18 17:39:15 -04:00
committed by Stoabrogga
parent 66aa629d12
commit 8b97440450

View File

@@ -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();
}
}