fix(Scripts/Gruuls) Kiggler no longer chases after target (#16866)
ponos
This commit is contained in:
parent
cef0d6f652
commit
ffbd59c2c5
1 changed files with 9 additions and 0 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue