1 parent 38fa094 commit 23a1400Copy full SHA for 23a1400
1 file changed
core/src/main/java/org/geysermc/geyser/session/GeyserSession.java
@@ -980,6 +980,10 @@ private void sendInitialGameRules() {
980
// We disable the locator bar until we are certain that the server wants us to enable it
981
// See WaypointCache for details
982
gamerulePacket.getGameRules().add(new GameRuleData<>("locatorBar", false));
983
+ } else {
984
+ // On bedrock 26.10 and above, the client only shows the locator bar when there are
985
+ // waypoints on it, so we're fine doing this
986
+ gamerulePacket.getGameRules().add(new GameRuleData<>("locatorBar", true));
987
}
988
989
upstream.sendPacket(gamerulePacket);
0 commit comments