mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-12-19 16:28:13 +01:00
Patch for LibsDisguises, they are sending too big chunks. :'( Fix #3
This commit is contained in:
parent
7418492ef1
commit
fc993809d6
@ -22,6 +22,7 @@ import io.netty.buffer.ByteBuf;
|
||||
import io.netty.buffer.Unpooled;
|
||||
import org.apache.commons.lang.IllegalClassException;
|
||||
import org.bukkit.World;
|
||||
import us.myles.ViaVersion.api.ViaVersion;
|
||||
import us.myles.ViaVersion.api.minecraft.chunks.Chunk;
|
||||
import us.myles.ViaVersion.api.minecraft.chunks.ChunkSection;
|
||||
import us.myles.ViaVersion.api.type.PartialType;
|
||||
@ -77,6 +78,14 @@ public class Chunk1_10Type extends PartialType<Chunk, ClientWorld> {
|
||||
|
||||
List<CompoundTag> nbtData = Arrays.asList(Type.NBT_ARRAY.read(input));
|
||||
|
||||
// Temp patch for plugins that sent wrong too big chunks TODO find the issue in LibsDisguise and PR it.
|
||||
if (input.readableBytes() > 0) {
|
||||
byte[] array = new byte[input.readableBytes()];
|
||||
input.readBytes(array);
|
||||
if (ViaVersion.getInstance().isDebug())
|
||||
System.out.println("Found " + array.length + " more bytes than expected while reading the chunk");
|
||||
}
|
||||
|
||||
return new Chunk1_10(chunkX, chunkZ, groundUp, primaryBitmask, sections, biomeData, nbtData);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user