Scripts/Deadmines: Vanessa VanCleef should constantly summon Defias reinforcements rather than just each one a single time

This commit is contained in:
Ovahlord
2018-05-29 18:52:29 +02:00
parent 4376098be4
commit dbb60b46ad

View File

@@ -327,8 +327,10 @@ class boss_vanessa_van_cleef : public CreatureScript
me->CastSpell(x, y, z, defiasReinforcementSpells[_currentReinforcement], true);
_currentReinforcement++;
if (_currentReinforcement <= REINFORCEMENT_BLOOD_WIZARD)
events.Repeat(Seconds(10));
if (_currentReinforcement == REINFORCEMENT_BLOOD_WIZARD)
_currentReinforcement = REINFORCEMENT_ENFORCER;
events.Repeat(Seconds(10));
}
break;
}