geforkt von Mirrors/Velocity
Remove unnecessary slicing of uncompressed packets
Dieser Commit ist enthalten in:
Ursprung
c33f9e0466
Commit
ebd0fcc6b1
@ -50,7 +50,7 @@ public class MinecraftCompressDecoder extends MessageToMessageDecoder<ByteBuf> {
|
||||
int claimedUncompressedSize = ProtocolUtils.readVarInt(in);
|
||||
if (claimedUncompressedSize == 0) {
|
||||
// This message is not compressed.
|
||||
out.add(in.retainedSlice());
|
||||
out.add(in.retain());
|
||||
return;
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren