Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3935607

Browse files
committedDec 8, 2023
Initialize command manager and ping passthrough before Geyser#start
1 parent 6c8434b commit 3935607

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎bootstrap/viaproxy/src/main/java/org/geysermc/geyser/platform/viaproxy/GeyserViaProxyBootstrap.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,13 @@ public void onEnable() {
7878
GeyserConfiguration.checkGeyserConfiguration(this.config, this.logger);
7979

8080
this.geyser = GeyserImpl.load(PlatformType.VIAPROXY, this);
81-
GeyserImpl.start();
8281

8382
this.commandManager = new GeyserCommandManager(this.geyser);
8483
this.commandManager.init();
8584

8685
this.pingPassthrough = GeyserLegacyPingPassthrough.init(this.geyser);
86+
87+
GeyserImpl.start();
8788
}
8889

8990
@Override

0 commit comments

Comments
 (0)
Please sign in to comment.