Skip to content

Commit

Permalink
Scripts/Icecrown Citadel: Fixed Deathbringer Saurfang berserk timer o…
Browse files Browse the repository at this point in the history
…n heroic mode.
  • Loading branch information
Jildor authored and Shauren committed Apr 26, 2012
1 parent 16e367b commit bf7a32b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -297,7 +297,7 @@ class boss_deathbringer_saurfang : public CreatureScript

Talk(SAY_AGGRO);
events.ScheduleEvent(EVENT_SUMMON_BLOOD_BEAST, 30000, 0, PHASE_COMBAT);
events.ScheduleEvent(EVENT_BERSERK, 480000, 0, PHASE_COMBAT);
events.ScheduleEvent(EVENT_BERSERK, IsHeroic() ? 360000 : 480000, 0, PHASE_COMBAT);
events.ScheduleEvent(EVENT_BOILING_BLOOD, 15500, 0, PHASE_COMBAT);
events.ScheduleEvent(EVENT_BLOOD_NOVA, 17000, 0, PHASE_COMBAT);
events.ScheduleEvent(EVENT_RUNE_OF_BLOOD, 20000, 0, PHASE_COMBAT);
Expand Down

0 comments on commit bf7a32b

Please sign in to comment.