fix(Scripts/TheEye): make Al'ar not get stuck during dive bomb when no enemies in melee range (#18693)
* initial * Update boss_alar.cpp
This commit is contained in:
parent
4199cb8ce0
commit
d52010f2fc
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ struct boss_alar : public BossAI
|
|||
if (me->isMoving())
|
||||
return true;
|
||||
|
||||
return me->IsWithinMeleeRange(victim);
|
||||
return _hasPretendedToDie || me->IsWithinMeleeRange(victim);
|
||||
}
|
||||
|
||||
void EnterEvadeMode(EvadeReason why) override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue