fix-home-corner-teleport

This commit is contained in:
ch4ika 2024-02-18 10:35:40 +01:00
parent e51121960d
commit f62e8a6f22

View File

@ -1407,7 +1407,7 @@ public class Plot {
@Deprecated @Deprecated
public Location getHomeSynchronous() { public Location getHomeSynchronous() {
BlockLoc home = this.getPosition(); BlockLoc home = this.getPosition();
if (home == null || home.getX() == 0 && home.getZ() == 0) { if (home == null) {
return this.getDefaultHomeSynchronous(true); return this.getDefaultHomeSynchronous(true);
} else { } else {
Location bottom = this.getBottomAbs(); Location bottom = this.getBottomAbs();
@ -1439,7 +1439,7 @@ public class Plot {
*/ */
public void getHome(final Consumer<Location> result) { public void getHome(final Consumer<Location> result) {
BlockLoc home = this.getPosition(); BlockLoc home = this.getPosition();
if (home == null || home.getX() == 0 && home.getZ() == 0) { if (home == null) {
this.getDefaultHome(result); this.getDefaultHome(result);
} else { } else {
if (!isLoaded()) { if (!isLoaded()) {