diff options
| -rw-r--r-- | serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java | 2 | ||||
| -rw-r--r-- | serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BedrockConnect.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java index 0d54886..295ad1c 100644 --- a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java +++ b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java @@ -136,7 +136,7 @@ public class BCPlayer { //startGamePacket.setPlatformLockedContentConfirmed(false); startGamePacket.setMultiplayerGame(true); startGamePacket.setBroadcastingToLan(true); - startGamePacket.getGamerules().add((new GameRuleData<>("showcoordinates", true))); + startGamePacket.getGamerules().add((new GameRuleData<>("showcoordinates", false))); startGamePacket.setPlatformBroadcastMode(GamePublishSetting.PUBLIC); startGamePacket.setXblBroadcastMode(GamePublishSetting.PUBLIC); startGamePacket.setCommandsEnabled(true); diff --git a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BedrockConnect.java b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BedrockConnect.java index 8b3bcb8..5336869 100644 --- a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BedrockConnect.java +++ b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BedrockConnect.java @@ -54,7 +54,7 @@ public class BedrockConnect { if(str.startsWith("port=")) port = getArgValue(str, "port"); if(str.startsWith("nodb=")) - noDB = true; + noDB = getArgValue(str, "nodb").toLowerCase().equals("true"); if(str.startsWith("custom_servers=")) customServers = getArgValue(str, "custom_servers"); if(str.startsWith("generatedns=")) { |
