Correctly show outdated_client and outdated_server messages
If the client protocol version is not supported, show outdated_server message only if client version is higher than highest supported protocol version, outdated_client message else.
This commit is contained in:
parent
507a98f28f
commit
1250088f98
@ -295,7 +295,13 @@ public class InitialHandler extends PacketHandler implements PendingConnection
|
|||||||
|
|
||||||
if ( !ProtocolConstants.SUPPORTED_VERSION_IDS.contains( handshake.getProtocolVersion() ) )
|
if ( !ProtocolConstants.SUPPORTED_VERSION_IDS.contains( handshake.getProtocolVersion() ) )
|
||||||
{
|
{
|
||||||
disconnect( bungee.getTranslation( "outdated_server" ) );
|
if ( handshake.getProtocolVersion() > bungee.getProtocolVersion() )
|
||||||
|
{
|
||||||
|
disconnect( bungee.getTranslation( "outdated_server" ) );
|
||||||
|
} else
|
||||||
|
{
|
||||||
|
disconnect( bungee.getTranslation( "outdated_client" ) );
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user