Mirror von
https://github.com/PaperMC/Velocity.git
synchronisiert 2025-01-11 15:41:14 +01:00
Fix a bug where it would try to register legacy channels(!) on 1.13+
Dieser Commit ist enthalten in:
Ursprung
a44bb3b048
Commit
5af09f906a
@ -46,7 +46,9 @@ public class VelocityChannelRegistrar implements ChannelRegistrar {
|
||||
public Collection<String> getModernChannelIds() {
|
||||
Collection<String> ids = new ArrayList<>();
|
||||
for (ChannelIdentifier value : identifierMap.values()) {
|
||||
ids.add(value.getId());
|
||||
if (value instanceof MinecraftChannelIdentifier) {
|
||||
ids.add(value.getId());
|
||||
}
|
||||
}
|
||||
return ids;
|
||||
}
|
||||
|
Laden…
x
In neuem Issue referenzieren
Einen Benutzer sperren