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:
Ursprung
bd54b34334
Commit
64ea90d254
@ -743,9 +743,18 @@ public class VelocityServer implements ProxyServer, ForwardingAudience {
|
||||
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) {
|
||||
return version.compareTo(ProtocolVersion.MINECRAFT_1_16) >= 0 ? POST_1_16_PING_SERIALIZER
|
||||
: PRE_1_16_PING_SERIALIZER;
|
||||
if (version == ProtocolVersion.UNKNOWN
|
||||
|| version.compareTo(ProtocolVersion.MINECRAFT_1_16) >= 0) {
|
||||
return POST_1_16_PING_SERIALIZER;
|
||||
}
|
||||
return PRE_1_16_PING_SERIALIZER;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren