diff --git a/Core/src/main/java/com/intellectualcrafters/plot/object/Plot.java b/Core/src/main/java/com/intellectualcrafters/plot/object/Plot.java index 7d2d1a628..5d2fde8bf 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/object/Plot.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/object/Plot.java @@ -1397,7 +1397,7 @@ public class Plot { * @return the name of the biome */ public String getBiome() { - Location loc = this.getBottomAbs(); + Location loc = this.getCenter(); return WorldUtil.IMP.getBiome(loc.getWorld(), loc.getX(), loc.getZ()); }