3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-09-29 06:30:16 +02:00
Co-authored-by: kyngs <kyngs@users.noreply.github.com>
Dieser Commit ist enthalten in:
kyngs 2022-08-09 21:03:03 +02:00 committet von GitHub
Ursprung 6496983ca3
Commit 3293f7a9eb
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23

Datei anzeigen

@ -420,7 +420,9 @@ public enum StateRegistry {
ProtocolVersion to = current == next ? lastValid != null ProtocolVersion to = current == next ? lastValid != null
? lastValid : getLast(SUPPORTED_VERSIONS) : next.protocolVersion; ? lastValid : getLast(SUPPORTED_VERSIONS) : next.protocolVersion;
if (from.compareTo(to) >= 0 && from != getLast(SUPPORTED_VERSIONS)) { ProtocolVersion lastInList = lastValid != null ? lastValid : getLast(SUPPORTED_VERSIONS);
if (from.compareTo(to) >= 0 && from != lastInList) {
throw new IllegalArgumentException(String.format( throw new IllegalArgumentException(String.format(
"Next mapping version (%s) should be lower then current (%s)", to, from)); "Next mapping version (%s) should be lower then current (%s)", to, from));
} }