From 39356071c4d59d82469477f160919365f88d39c7 Mon Sep 17 00:00:00 2001 From: RaphiMC <50594595+RaphiMC@users.noreply.github.com> Date: Fri, 8 Dec 2023 11:13:45 +0100 Subject: [PATCH] Initialize command manager and ping passthrough before Geyser#start --- .../geyser/platform/viaproxy/GeyserViaProxyBootstrap.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap/viaproxy/src/main/java/org/geysermc/geyser/platform/viaproxy/GeyserViaProxyBootstrap.java b/bootstrap/viaproxy/src/main/java/org/geysermc/geyser/platform/viaproxy/GeyserViaProxyBootstrap.java index b74b7ab8a..167cf1a8b 100644 --- a/bootstrap/viaproxy/src/main/java/org/geysermc/geyser/platform/viaproxy/GeyserViaProxyBootstrap.java +++ b/bootstrap/viaproxy/src/main/java/org/geysermc/geyser/platform/viaproxy/GeyserViaProxyBootstrap.java @@ -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