3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-09-17 00:33:47 +02:00

Use normal biome data for non-extended world height

Dieser Commit ist enthalten in:
Camotoy 2021-07-14 21:59:10 -04:00
Ursprung d19ff657de
Commit e5cb122db3
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -85,6 +85,7 @@ public class ChunkUtils {
public static final byte[] EMPTY_BIOME_DATA;
static {
if (GeyserConnector.getInstance().getConfig().isExtendedWorldHeight()) {
ByteBuf byteBuf = Unpooled.buffer();
try {
BlockStorage blockStorage = new BlockStorage(0);
@ -107,6 +108,10 @@ public class ChunkUtils {
} finally {
byteBuf.release();
}
} else {
EMPTY_BIOME_DATA = null; // Unused
EMPTY_CHUNK_DATA = new byte[257]; // 256 bytes for biomes, one for borders
}
}
private static int indexYZXtoXZY(int yzx) {