From c427630a0136c1a4bccbc8c2778f9757c7318475 Mon Sep 17 00:00:00 2001 From: Camotoy <20743703+Camotoy@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:44:43 -0400 Subject: [PATCH] Fix broadcast port default --- .../java/org/geysermc/geyser/configuration/GeyserConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/geysermc/geyser/configuration/GeyserConfig.java b/core/src/main/java/org/geysermc/geyser/configuration/GeyserConfig.java index bba928f3e..050a511f6 100644 --- a/core/src/main/java/org/geysermc/geyser/configuration/GeyserConfig.java +++ b/core/src/main/java/org/geysermc/geyser/configuration/GeyserConfig.java @@ -216,7 +216,7 @@ public interface GeyserConfig { @Comment(""" The port to broadcast to Bedrock clients with the MOTD that they should use to connect to the server. DO NOT change this unless Geyser runs on a different internal port than the one that is used to connect.""") - @DefaultNumeric(19132) + @DefaultNumeric(0) @NumericRange(from = 0, to = 65535) int broadcastPort();