Fix broadcast port default

This commit is contained in:
Camotoy 2024-10-08 18:44:43 -04:00
parent b2ea5792be
commit c427630a01
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F

View file

@ -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();