We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a19d1d2 commit c838e00Copy full SHA for c838e00
protocol/src/main/java/org/geysermc/mcprotocollib/network/tcp/TcpClientSession.java
@@ -116,8 +116,8 @@ public void initChannel(Channel channel) {
116
pipeline.addLast("sizer", new TcpPacketSizer(protocol.getPacketHeader(), getCodecHelper()));
117
118
pipeline.addLast("flow-control", new TcpFlowControlHandler());
119
- pipeline.addLast("codec", new TcpPacketCodec(TcpClientSession.this, true));
120
- pipeline.addLast("manager", TcpClientSession.this);
+ pipeline.addLast("codec", new TcpPacketCodec(TcpClientSession.this, true));
+ pipeline.addLast("manager", TcpClientSession.this);
121
}
122
});
123
0 commit comments