Fix recursive call

This commit is contained in:
Hannes Greule 2020-08-17 00:53:39 +02:00
parent 72507aba4b
commit 505bba7612

View File

@ -78,11 +78,11 @@ public final class PlotLoc {
} }
public int getX() { public int getX() {
return this.getX(); return this.x;
} }
public int getY() { public int getY() {
return this.getY(); return this.y;
} }
public int getZ() { public int getZ() {