Revert "Improve finding by allowing minimal distance & randomization"

This reverts commit 636fddd642.
This commit is contained in:
CocoTheOwner
2021-10-01 12:20:00 +02:00
committed by cyberpwn
parent 24f3176b1b
commit 6f6e74e015
5 changed files with 28 additions and 39 deletions

View File

@@ -80,7 +80,7 @@ public class Position2 {
}
public double distance(Position2 center) {
return Math.sqrt(Math.pow(center.getX() - x, 2) + Math.pow(center.getZ() - z, 2));
return Math.pow(center.getX() - x, 2) + Math.pow(center.getZ() - z, 2);
}
public Position2 add(int x, int z) {