Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Merge pull request #1113 from creeper123123321/master
Fix chunk writing
Dieser Commit ist enthalten in:
Commit
43e93e74b1
@ -100,7 +100,7 @@ public class Chunk1_9_3_4Type extends PartialType<Chunk, ClientWorld> {
|
||||
// Write biome data
|
||||
if (chunk.isBiomeData()) {
|
||||
for (int biome : chunk.getBiomeData()) {
|
||||
buf.writeByte((byte) biome);
|
||||
output.writeByte((byte) biome);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -159,7 +159,7 @@ public class Chunk1_9to1_8Type extends PartialType<Chunk, ClientChunks> {
|
||||
// Write biome data
|
||||
if (chunk.hasBiomeData()) {
|
||||
for (int biome : chunk.getBiomeData()) {
|
||||
buf.writeByte((byte) biome);
|
||||
output.writeByte((byte) biome);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren