3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-09-08 13:52:50 +02:00

18w07c* - MISSING MAPPINGS

Dieser Commit ist enthalten in:
creeper123123321 2018-02-17 20:43:08 -02:00
Ursprung 172ac19585
Commit 34cba80fd8

Datei anzeigen

@ -58,7 +58,7 @@ public class Chunk1_13Type extends PartialType<Chunk, ClientWorld> {
// Write biome data
if (chunk.isBiomeData()) {
for (byte value : chunk.getBiomeData()) {
Type.INT.write(output,value & 0xFF);
output.writeInt(value & 0xFF);
}
}