3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-06 00:00:47 +01:00

Also make sure to use the latest ping serializer as well

Dieser Commit ist enthalten in:
Andrew Steinborn 2023-05-15 01:20:45 -04:00
Ursprung 12a05f6d75
Commit 92ae25b8ac

Datei anzeigen

@ -747,9 +747,18 @@ public class VelocityServer implements ProxyServer, ForwardingAudience {
return bossBarManager; return bossBarManager;
} }
/**
* Returns a Gson instance for use in serializing server ping instances.
*
* @param version the protocol version in use
* @return the Gson instance
*/
public static Gson getPingGsonInstance(ProtocolVersion version) { public static Gson getPingGsonInstance(ProtocolVersion version) {
return version.compareTo(ProtocolVersion.MINECRAFT_1_16) >= 0 ? POST_1_16_PING_SERIALIZER if (version == ProtocolVersion.UNKNOWN
: PRE_1_16_PING_SERIALIZER; || version.compareTo(ProtocolVersion.MINECRAFT_1_16) >= 0) {
return POST_1_16_PING_SERIALIZER;
}
return PRE_1_16_PING_SERIALIZER;
} }
@Override @Override