Potential fix for plot biome (untested)

This commit is contained in:
Jesse Boyd 2016-06-23 13:09:56 +10:00
parent 16d191db2c
commit e6387419f7

View File

@ -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());
}