13
0
geforkt von Mirrors/Velocity

When pinging the server with protocol version -1, return the latest version supported by the proxy

This matches BungeeCord's behavior and is in line with what clients specifying this meta-version would expect.
Dieser Commit ist enthalten in:
Andrew Steinborn 2023-05-15 01:15:49 -04:00
Ursprung 673af65078
Commit 12a05f6d75

Datei anzeigen

@ -47,6 +47,9 @@ public class ServerListPingHandler {
}
private ServerPing constructLocalPing(ProtocolVersion version) {
if (version == ProtocolVersion.UNKNOWN) {
version = ProtocolVersion.MAXIMUM_VERSION;
}
VelocityConfiguration configuration = server.getConfiguration();
return new ServerPing(
new ServerPing.Version(version.getProtocol(),