mirror of
https://github.com/ViaVersion/ViaVersion.git
synced 2025-02-23 23:21:35 +01:00
Temporary force biomes to be ocean
This commit is contained in:
parent
dfd18d64c2
commit
17564506b5
@ -58,7 +58,7 @@ public class Chunk1_13Type extends PartialType<Chunk, ClientWorld> {
|
||||
if (groundUp) {
|
||||
for (int i = 0; i < 256; i++){
|
||||
// todo use int in Chunk?
|
||||
biomeData[i] = (byte) input.readInt();
|
||||
biomeData[i] = 0;
|
||||
}
|
||||
}
|
||||
|
||||
@ -101,7 +101,7 @@ public class Chunk1_13Type extends PartialType<Chunk, ClientWorld> {
|
||||
// Write biome data
|
||||
if (chunk.isBiomeData()) {
|
||||
for (byte value : chunk.getBiomeData()) {
|
||||
output.writeInt(value & 0xFF);
|
||||
output.writeInt(0); // This is a temporary workaround, we'll look into fixing this soon :)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user