Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Fix chunk writing
Dieser Commit ist enthalten in:
Ursprung
c1147cb9f7
Commit
ba7817170b
@ -100,7 +100,7 @@ public class Chunk1_9_3_4Type extends PartialType<Chunk, ClientWorld> {
|
|||||||
// Write biome data
|
// Write biome data
|
||||||
if (chunk.isBiomeData()) {
|
if (chunk.isBiomeData()) {
|
||||||
for (int biome : chunk.getBiomeData()) {
|
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
|
// Write biome data
|
||||||
if (chunk.hasBiomeData()) {
|
if (chunk.hasBiomeData()) {
|
||||||
for (int biome : chunk.getBiomeData()) {
|
for (int biome : chunk.getBiomeData()) {
|
||||||
buf.writeByte((byte) biome);
|
output.writeByte((byte) biome);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren