home commit

This commit is contained in:
Pan 2019-01-24 08:27:18 +13:00
parent efb69b0520
commit b6eb7cff34

View File

@ -312,7 +312,7 @@ public class combatManagerAI {
float xPos = mainThread.ec.theMapAwarenessAI.playerStaticDefenseLocations[i].x;
float zPos = mainThread.ec.theMapAwarenessAI.playerStaticDefenseLocations[i].z;
float d = (xPos - combatCenterX)*(xPos - combatCenterX) + (zPos - combatCenterZ)*(zPos - combatCenterZ);
if(d < 25) {
if(d < 20.25) {
staticDefenseAhead = true;
break;
}