13
0
geforkt von Mirrors/Velocity

Bump HARD_MAXIMUM_UNCOMPRESSED_SIZE to 128MiB

Dieser Commit ist enthalten in:
Andrew Steinborn 2023-10-27 15:17:32 -04:00
Ursprung 4b7950658b
Commit 0b07456c89

Datei anzeigen

@ -34,7 +34,7 @@ import java.util.List;
public class MinecraftCompressDecoder extends MessageToMessageDecoder<ByteBuf> {
private static final int VANILLA_MAXIMUM_UNCOMPRESSED_SIZE = 8 * 1024 * 1024; // 8MiB
private static final int HARD_MAXIMUM_UNCOMPRESSED_SIZE = 16 * 1024 * 1024; // 16MiB
private static final int HARD_MAXIMUM_UNCOMPRESSED_SIZE = 128 * 1024 * 1024; // 128MiB
private static final int UNCOMPRESSED_CAP =
Boolean.getBoolean("velocity.increased-compression-cap")