Fixed MASpawnThread.updateTargets()
This commit is contained in:
Binary file not shown.
@@ -373,12 +373,17 @@ public class MASpawnThread implements Runnable
|
|||||||
*/
|
*/
|
||||||
public void updateTargets()
|
public void updateTargets()
|
||||||
{
|
{
|
||||||
|
Creature c;
|
||||||
|
LivingEntity target;
|
||||||
for (Entity e : arena.monsters)
|
for (Entity e : arena.monsters)
|
||||||
{
|
{
|
||||||
if (arena.livePlayers.contains(((Creature) e).getTarget()))
|
c = (Creature) e;
|
||||||
|
target = c.getTarget();
|
||||||
|
|
||||||
|
if (target instanceof Player && arena.livePlayers.contains(target))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
((Creature) e).setTarget(getClosestPlayer(e));
|
c.setTarget(getClosestPlayer(e));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user