mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 21:17:00 +01:00
Switched biome coords from chunk based to block based
This commit is contained in:
parent
1cbed230d6
commit
8e53077efe
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ public class CraftBlock implements Block {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Biome getBiome() {
|
public Biome getBiome() {
|
||||||
BiomeBase base = chunk.getHandle().d.a().a(chunk.getX(), chunk.getZ());
|
BiomeBase base = chunk.getHandle().d.a().a(x, z);
|
||||||
|
|
||||||
if (base == BiomeBase.RAINFOREST) {
|
if (base == BiomeBase.RAINFOREST) {
|
||||||
return Biome.RAINFOREST;
|
return Biome.RAINFOREST;
|
||||||
|
|
Loading…
Reference in a new issue