mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2025-03-23 05:05:50 -04:00
Fixed Proxy2ServerHandler on connectionless channels
This commit is contained in:
parent
645e14c043
commit
6dd76b46ad
1 changed files with 2 additions and 2 deletions
|
@ -57,8 +57,8 @@ public class Proxy2ServerHandler extends SimpleChannelInboundHandler<IPacket> {
|
|||
private int joinGamePacketId = -1;
|
||||
|
||||
@Override
|
||||
public void channelActive(ChannelHandlerContext ctx) throws Exception {
|
||||
super.channelActive(ctx);
|
||||
public void channelRegistered(ChannelHandlerContext ctx) throws Exception {
|
||||
super.channelRegistered(ctx);
|
||||
|
||||
this.proxyConnection = ProxyConnection.fromChannel(ctx.channel());
|
||||
|
||||
|
|
Loading…
Reference in a new issue