diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index 67db8a698e..a166b0fbbe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -1407,7 +1407,7 @@ public void getSide(Consumer result) { @Deprecated public Location getHomeSynchronous() { BlockLoc home = this.getPosition(); - if (home == null || home.getX() == 0 && home.getZ() == 0) { + if (home == null) { return this.getDefaultHomeSynchronous(true); } else { Location bottom = this.getBottomAbs(); @@ -1439,7 +1439,7 @@ public Location getHomeSynchronous() { */ public void getHome(final Consumer result) { BlockLoc home = this.getPosition(); - if (home == null || home.getX() == 0 && home.getZ() == 0) { + if (home == null) { this.getDefaultHome(result); } else { if (!isLoaded()) {