3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-16 21:10:30 +01:00

Fix typo in LibdeflateVelocityCompressor

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-06-21 14:14:41 -04:00
Ursprung 91743aaa9d
Commit 877f98b87a

Datei anzeigen

@ -22,7 +22,7 @@ public class LibdeflateVelocityCompressor implements VelocityCompressor {
} }
this.inflateCtx = inflate.init(); this.inflateCtx = inflate.init();
this.deflateCtx = deflate.init(level == -1 ? 6 : level); this.deflateCtx = deflate.init(correctedLevel);
} }
@Override @Override