fix(Scripts/Gruuls) Kiggler no longer chases after target (#16866)

ponos
This commit is contained in:
v-mstrs
2023-08-01 19:06:20 +02:00
committed by GitHub
parent cef0d6f652
commit ffbd59c2c5

View File

@@ -261,6 +261,15 @@ struct boss_kiggler_the_crazed : public ScriptedAI
instance->SetBossState(DATA_MAULGAR, NOT_STARTED);
}
void AttackStart(Unit* who) override
{
if (!who)
return;
if (me->Attack(who, true))
me->GetMotionMaster()->MoveChase(who, 25.0f);
}
void JustEngagedWith(Unit* /*who*/) override
{
me->SetInCombatWithZone();