fix-home-corner-teleport

This commit is contained in:
ch4ika 2024-02-18 10:35:40 +01:00
parent e51121960d
commit f62e8a6f22
1 changed files with 2 additions and 2 deletions

View File

@ -1407,7 +1407,7 @@ public class Plot {
@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 class Plot {
*/
public void getHome(final Consumer<Location> result) {
BlockLoc home = this.getPosition();
if (home == null || home.getX() == 0 && home.getZ() == 0) {
if (home == null) {
this.getDefaultHome(result);
} else {
if (!isLoaded()) {