13
0
geforkt von Mirrors/Velocity

Include compatible protocol versions in the incompatible version message

Fixes #519
Dieser Commit ist enthalten in:
Andrew Steinborn 2021-06-13 05:16:57 -04:00
Ursprung 83dff50bc7
Commit 5a337afb00

Datei anzeigen

@ -118,7 +118,8 @@ public class HandshakeSessionHandler implements MinecraftSessionHandler {
private void handleLogin(Handshake handshake, InitialInboundConnection ic) {
if (!ProtocolVersion.isSupported(handshake.getProtocolVersion())) {
ic.disconnectQuietly(Component.translatable("multiplayer.disconnect.outdated_client"));
ic.disconnectQuietly(Component.translatable("multiplayer.disconnect.outdated_client")
.args(Component.text(ProtocolVersion.SUPPORTED_VERSION_STRING)));
return;
}