1
0
mirror of https://github.com/ViaVersion/ViaVersion.git synced 2025-03-11 14:12:01 +01:00

Merge branch 'master' into dev

This commit is contained in:
Myles 2018-12-07 21:15:49 +00:00
commit 98c0985657
2 changed files with 2 additions and 2 deletions
common/src/main/java/us/myles/ViaVersion/protocols
protocol1_9_1_2to1_9_3_4/types
protocol1_9to1_8/types

View File

@ -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);
}
}

View File

@ -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);
}
}
}