#1930: Don't handle upstream packets if no server connected

This commit is contained in:
md_5 2016-08-03 17:03:06 +10:00
parent a605c1acbc
commit 3a0b0aa116

View File

@ -80,15 +80,18 @@ public class UpstreamBridge extends PacketHandler
}
}
@Override
public boolean shouldHandle(PacketWrapper packet) throws Exception
{
return con.getServer() != null;
}
@Override
public void handle(PacketWrapper packet) throws Exception
{
con.getEntityRewrite().rewriteServerbound( packet.buf, con.getClientEntityId(), con.getServerEntityId() );
if ( con.getServer() != null )
{
con.getServer().getCh().write( packet );
}
}
@Override
public void handle(KeepAlive alive) throws Exception