Scripts/PitOfSaron: Remove Forgemaster Garfrost's Blade buff before applying Mace buff.

This commit is contained in:
johnholiver
2011-04-13 14:08:34 -03:00
parent ae7d55bb3b
commit acf7f65013

View File

@@ -157,7 +157,10 @@ class boss_garfrost : public CreatureScript
if (events.GetPhaseMask() & PHASE_TWO_MASK)
DoCast(me, SPELL_FORGE_BLADE);
if (events.GetPhaseMask() & PHASE_THREE_MASK)
{
me->RemoveAurasDueToSpell(SPELL_FORGE_BLADE);
DoCast(me, SPELL_FORGE_MACE);
}
events.ScheduleEvent(EVENT_RESUME_ATTACK, 5000);
}