3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-01 23:50:11 +02:00

Initialize command manager and ping passthrough before Geyser#start

Dieser Commit ist enthalten in:
RaphiMC 2023-12-08 11:13:45 +01:00
Ursprung 6c8434b352
Commit 39356071c4
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 0F6BB0657A03AC94

Datei anzeigen

@ -78,12 +78,13 @@ public class GeyserViaProxyBootstrap implements GeyserBootstrap {
GeyserConfiguration.checkGeyserConfiguration(this.config, this.logger);
this.geyser = GeyserImpl.load(PlatformType.VIAPROXY, this);
GeyserImpl.start();
this.commandManager = new GeyserCommandManager(this.geyser);
this.commandManager.init();
this.pingPassthrough = GeyserLegacyPingPassthrough.init(this.geyser);
GeyserImpl.start();
}
@Override