Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-12-26 16:12:42 +01:00
Rewrite BungeeCord's plugin channel format
Dieser Commit ist enthalten in:
Ursprung
9b42094273
Commit
3bdf81158a
@ -596,9 +596,13 @@ public class InventoryPackets {
|
|||||||
case "wdl:request":
|
case "wdl:request":
|
||||||
return "WDL|REQUEST";
|
return "WDL|REQUEST";
|
||||||
default:
|
default:
|
||||||
return newId.startsWith("viaversion:legacy/")
|
return newId.startsWith("viaversion:legacy/") // Our format :)
|
||||||
? new String(BaseEncoding.base32().lowerCase().withPadChar('-').decode(
|
? new String(BaseEncoding.base32().lowerCase().withPadChar('-').decode(
|
||||||
newId.substring(18)), StandardCharsets.UTF_8)
|
newId.substring(18)), StandardCharsets.UTF_8)
|
||||||
|
: newId.startsWith("legacy:")
|
||||||
|
? newId.substring(7) // Rewrite BungeeCord's format. It will only prevent kicks, plugins will still be broken because of case-sensitivity *plays sad violin*
|
||||||
|
: newId.startsWith("bungeecord:legacy/")
|
||||||
|
? newId.substring(18)
|
||||||
: newId;
|
: newId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren