From 505bba7612a1035e9fb79e3c9f61a767f27c52dc Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Mon, 17 Aug 2020 00:53:39 +0200 Subject: [PATCH] Fix recursive call --- Core/src/main/java/com/plotsquared/core/location/PlotLoc.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java index 9b68a324e..be257ce2d 100644 --- a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java @@ -78,11 +78,11 @@ public final class PlotLoc { } public int getX() { - return this.getX(); + return this.x; } public int getY() { - return this.getY(); + return this.y; } public int getZ() {