Sync with L2jServer HighFive Mar 3rd 2016.

This commit is contained in:
MobiusDev
2016-03-05 15:16:23 +00:00
parent 36448c168e
commit 7a9de77047
20 changed files with 269 additions and 237 deletions

View File

@ -1771,6 +1771,10 @@ public class L2AttackableAI extends L2CharacterAI implements Runnable
double dist = 0;
double dist2 = 0;
int range = 0;
if (getAttackTarget() == null)
{
return;
}
try
{
if (npc.getTarget() == null)

View File

@ -244,6 +244,7 @@ public class L2PlayerAI extends L2PlayableAI
return;
}
clientStopMoving(null);
_actor.doAttack(target);
}