Implement getComputedBiome API

This commit is contained in:
Jason Penilla
2022-03-14 22:46:05 -07:00
parent 0d199767d2
commit 94231dffb8
3 changed files with 22 additions and 0 deletions

View File

@@ -340,6 +340,13 @@ public class CraftBlock implements Block {
return this.getWorld().getBiome(this.getX(), this.getY(), this.getZ());
}
// Paper start
@Override
public Biome getComputedBiome() {
return this.getWorld().getComputedBiome(this.getX(), this.getY(), this.getZ());
}
// Paper end
@Override
public void setBiome(Biome bio) {
this.getWorld().setBiome(this.getX(), this.getY(), this.getZ(), bio);