1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

Logic Correction for PickaxeOfTheSeeker

This commit is contained in:
AlexLander123 2019-10-13 21:01:15 +08:00
parent d2581c625d
commit b95b3d2bf4

View File

@ -27,7 +27,7 @@ public class PickaxeOfTheSeeker extends SimpleSlimefunItem<ItemInteractionHandle
for (int x = -4; x <= 4; x++) { for (int x = -4; x <= 4; x++) {
for (int y = -4; y <= 4; y++) { for (int y = -4; y <= 4; y++) {
for (int z = -4; z <= 4; z++) { for (int z = -4; z <= 4; z++) {
if (p.getLocation().getBlock().getRelative(x, y, z).getType().toString().endsWith("_ORE") && (closest == null || p.getLocation().distanceSquared(closest.getLocation()) < p.getLocation().distanceSquared(p.getLocation().getBlock().getRelative(x, y, z).getLocation()))) { if (p.getLocation().getBlock().getRelative(x, y, z).getType().toString().endsWith("_ORE") && (closest == null || p.getLocation().distanceSquared(closest.getLocation()) > p.getLocation().distanceSquared(p.getLocation().getBlock().getRelative(x, y, z).getLocation()))) {
closest = p.getLocation().getBlock().getRelative(x, y, z); closest = p.getLocation().getBlock().getRelative(x, y, z);
} }
} }