13
0
geforkt von Mirrors/Velocity

Fix compression

Dieser Commit ist enthalten in:
Andrew Steinborn 2018-07-25 12:20:20 -04:00
Ursprung ee1cddc6a0
Commit 2e250d24b6

Datei anzeigen

@ -26,8 +26,9 @@ public class MinecraftCompressEncoder extends MessageToByteEncoder<ByteBuf> {
ByteBuf compressedBuffer = ctx.alloc().buffer();
try {
int uncompressed = msg.readableBytes();
compressor.deflate(msg, compressedBuffer);
ProtocolUtils.writeVarInt(out, msg.readableBytes());
ProtocolUtils.writeVarInt(out, uncompressed);
out.writeBytes(compressedBuffer);
} finally {
compressedBuffer.release();