Scripts/Deadmines: Helix Gearbreaker will summon his 2nd crew only on heroic difficulty

This commit is contained in:
Ovahlord
2019-10-08 14:31:41 +02:00
parent 2f9847ee7e
commit 143ece1702

View File

@@ -237,7 +237,8 @@ struct boss_helix_gearbreaker : public BossAI
me->RemoveAurasDueToSpell(SPELL_OAFGUARD);
events.SetPhase(PHASE_2);
events.ScheduleEvent(EVENT_SUMMON_HELIX_CREW, 3s, 0, PHASE_2);
if (IsHeroic())
events.ScheduleEvent(EVENT_SUMMON_HELIX_CREW, 3s, 0, PHASE_2);
if (!me->GetVehicleBase())
events.ScheduleEvent(EVENT_RIDE_FACE, 2s + 500ms, 0, PHASE_2);
break;