Changes for 1.18.30

This commit is contained in:
Dylan K. Taylor
2022-04-20 13:59:50 +01:00
parent e0d4bd985e
commit c085bf0db4
5 changed files with 22 additions and 18 deletions

View File

@ -78,7 +78,7 @@ final class ChunkSerializer{
//TODO: right now we don't support 3D natively, so we just 3Dify our 2D biomes so they fill the column
$encodedBiomePalette = self::serializeBiomesAsPalette($chunk);
$stream->put(str_repeat($encodedBiomePalette, 25));
$stream->put(str_repeat($encodedBiomePalette, 24));
$stream->putByte(0); //border block array count
//Border block entry format: 1 byte (4 bits X, 4 bits Z). These are however useless since they crash the regular client.