Sort of fix biome getting

It seems to want to put random blocks where the biome isn't
This commit is contained in:
dordsor21 2020-05-14 16:27:24 +01:00
parent bdc129cf7b
commit 35169230ad
2 changed files with 4 additions and 4 deletions

View File

@ -100,11 +100,11 @@ public class BukkitGetBlocks_1_15 extends CharGetBlocks {
BiomeBase base = null;
if (y == -1) {
for (y = 0; y < FaweCache.IMP.WORLD_HEIGHT; y++) {
base = index.getBiome(x, y, z);
base = index.getBiome(x >> 2, y >> 2, z >> 2);
if (base != null) break;
}
} else {
base = index.getBiome(x, y, z);
base = index.getBiome(x >> 2, y >> 2, z >> 2);
}
return base != null ? BukkitAdapter.adapt(CraftBlock.biomeBaseToBiome(base)) : null;
}

View File

@ -105,11 +105,11 @@ public class BukkitGetBlocks_1_15_2 extends CharGetBlocks {
BiomeBase base = null;
if (y == -1) {
for (y = 0; y < FaweCache.IMP.WORLD_HEIGHT; y++) {
base = index.getBiome(x, y, z);
base = index.getBiome(x >> 2, y >> 2, z >> 2);
if (base != null) break;
}
} else {
base = index.getBiome(x, y, z);
base = index.getBiome(x >> 2, y >> 2, z >> 2);
}
return base != null ? BukkitAdapter.adapt(CraftBlock.biomeBaseToBiome(base)) : null;
}