3
0
Mirror von https://github.com/ViaVersion/ViaBackwards.git synchronisiert 2024-09-27 22:30:08 +02:00

Fix possible NPE in 1.17->1.16.4 bedrock at 0 emulation (#821)

Dieser Commit ist enthalten in:
EnZaXD 2024-07-14 10:10:03 +02:00 committet von GitHub
Ursprung 7e08534f4f
Commit c9d57aab8d
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: B5690EEEBB952194

Datei anzeigen

@ -364,10 +364,12 @@ public final class BlockItemPacketRewriter1_17 extends BackwardsItemRewriter<Cli
if (ViaBackwards.getConfig().bedrockAtY0()) {
final ChunkSection lowestSection = chunk.getSections()[0];
final DataPalette blocks = lowestSection.palette(PaletteType.BLOCKS);
for (int x = 0; x < 16; x++) {
for (int z = 0; z < 16; z++) {
blocks.setIdAt(x, 0, z, BEDROCK_BLOCK_STATE);
if (lowestSection != null) {
final DataPalette blocks = lowestSection.palette(PaletteType.BLOCKS);
for (int x = 0; x < 16; x++) {
for (int z = 0; z < 16; z++) {
blocks.setIdAt(x, 0, z, BEDROCK_BLOCK_STATE);
}
}
}
}