Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Core/src/main/java/com/plotsquared/core/plot/Plot.java
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ public void getSide(Consumer<Location> 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();
Expand Down Expand Up @@ -1439,7 +1439,7 @@ public Location getHomeSynchronous() {
*/
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()) {
Expand Down