Mirror von
https://github.com/Moulberry/AxiomPaperPlugin.git
synchronisiert 2024-11-08 17:40:04 +01:00
Normalize compatible data versions
Dieser Commit ist enthalten in:
Ursprung
90b73eb7fc
Commit
e0ec48f77d
@ -51,6 +51,13 @@ public class HelloPacketListener implements PluginMessageListener {
|
||||
}
|
||||
}
|
||||
|
||||
private static int normalizeDataVersion(int dataVersion) {
|
||||
if (dataVersion == 3955) { // 1.21.1
|
||||
return 3953; // 1.21
|
||||
}
|
||||
return dataVersion;
|
||||
}
|
||||
|
||||
private void process(Player player, byte[] message) {
|
||||
if (!this.plugin.hasAxiomPermission(player)) {
|
||||
return;
|
||||
@ -62,7 +69,7 @@ public class HelloPacketListener implements PluginMessageListener {
|
||||
// note - skipping NBT here. friendlyByteBuf.readNBT();
|
||||
|
||||
int serverDataVersion = SharedConstants.getCurrentVersion().getDataVersion().getVersion();
|
||||
if (dataVersion != serverDataVersion) {
|
||||
if (normalizeDataVersion(dataVersion) != normalizeDataVersion(serverDataVersion)) {
|
||||
String incompatibleDataVersion = plugin.configuration.getString("incompatible-data-version");
|
||||
if (incompatibleDataVersion == null) incompatibleDataVersion = "warn";
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren