Decrease compression level to 3

This commit is contained in:
themode 2020-11-16 17:42:37 +01:00
parent 12822c508f
commit 8b526bcabe

View File

@ -33,7 +33,7 @@ public class PacketCompressor extends ByteToMessageCodec<ByteBuf> {
private final byte[] buffer = new byte[8192];
private final Deflater deflater = new Deflater();
private final Deflater deflater = new Deflater(3);
private final Inflater inflater = new Inflater();
public PacketCompressor(int threshold) {