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

Fixed NullPointerException

Fixed NullPointerException when using Pickaxe of the Seeker
This commit is contained in:
AlexLander123 2019-10-13 16:39:01 +08:00
parent f62bdf92c0
commit 75d568c2dd

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().distance(closest.getLocation()) < p.getLocation().distance(p.getLocation().getBlock().getRelative(x, y, z).getLocation())) { if (p.getLocation().getBlock().getRelative(x, y, z).getType().toString().endsWith("_ORE") && (closest == null || p.getLocation().distance(closest.getLocation()) < p.getLocation().distance(p.getLocation().getBlock().getRelative(x, y, z).getLocation()))) {
closest = p.getLocation().getBlock().getRelative(x, y, z); closest = p.getLocation().getBlock().getRelative(x, y, z);
} }
} }