From e6387419f7767eea90de436af9a8114e69c7869c Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Thu, 23 Jun 2016 13:09:56 +1000 Subject: [PATCH] Potential fix for plot biome (untested) --- .../main/java/com/intellectualcrafters/plot/object/Plot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); }