Null check
This commit is contained in:
parent
71c86f9f90
commit
e4e01ccb55
@ -345,9 +345,12 @@ public class DownstreamBridge extends PacketHandler
|
|||||||
if ( subChannel.equals( "ServerIP" ) )
|
if ( subChannel.equals( "ServerIP" ) )
|
||||||
{
|
{
|
||||||
ServerInfo info = bungee.getServerInfo( in.readUTF() );
|
ServerInfo info = bungee.getServerInfo( in.readUTF() );
|
||||||
out.writeUTF( "ServerIP" );
|
if ( info != null )
|
||||||
out.writeUTF( info.getAddress().getAddress().getHostAddress() );
|
{
|
||||||
out.writeShort( info.getAddress().getPort() );
|
out.writeUTF( "ServerIP" );
|
||||||
|
out.writeUTF( info.getAddress().getAddress().getHostAddress() );
|
||||||
|
out.writeShort( info.getAddress().getPort() );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check we haven't set out to null, and we have written data, if so reply back back along the BungeeCord channel
|
// Check we haven't set out to null, and we have written data, if so reply back back along the BungeeCord channel
|
||||||
|
Loading…
Reference in New Issue
Block a user