fix(Scripts/SlavePens): Ahune shouldn't spawn more than a single Hailstone per phase

fix(Scripts/SlavePens): Ahune shouldn't spawn more than a single Hailstone per phase
This commit is contained in:
Skjalf
2023-06-26 01:15:53 -03:00
committed by GitHub
parent 9b05eb87f2
commit 5e0cfa2287

View File

@@ -236,7 +236,6 @@ struct boss_ahune : public ScriptedAI
float dist = (float)urand(3, 10);
float angle = rand_norm() * 2 * M_PI;
me->CastSpell(MinionSummonPos.GetPositionX() + cos(angle) * dist, MinionSummonPos.GetPositionY() + std::sin(angle) * dist, MinionSummonPos.GetPositionZ(), SPELL_SUMMON_HAILSTONE, false);
events.RepeatEvent(30000);
}
break;
case EVENT_SPELL_SUMMON_COLDWAVE: