From 45360f09798a1641df4ab96caa11ee74e7d4acfe Mon Sep 17 00:00:00 2001 From: Sauilitired Date: Sat, 30 Mar 2019 13:32:45 +0100 Subject: [PATCH] Make sure `/plot home` ignores server owned plots --- .../github/intellectualsites/plotsquared/plot/object/Plot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/Plot.java b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/Plot.java index bb723aef3..ee2e23413 100644 --- a/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/Plot.java +++ b/Core/src/main/java/com/github/intellectualsites/plotsquared/plot/object/Plot.java @@ -337,7 +337,7 @@ public class Plot { } public boolean isOwnerAbs(UUID uuid) { - return uuid.equals(this.owner); + return uuid.equals(this.getOwner()); } /**