3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 14:40:21 +02:00

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 3852f27eb8
Commit bd54b34334

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(),