diff --git a/connector/src/main/java/org/geysermc/connector/network/session/cache/WorldCache.java b/connector/src/main/java/org/geysermc/connector/network/session/cache/WorldCache.java index 270d3f4a5..84678c211 100644 --- a/connector/src/main/java/org/geysermc/connector/network/session/cache/WorldCache.java +++ b/connector/src/main/java/org/geysermc/connector/network/session/cache/WorldCache.java @@ -75,11 +75,10 @@ public class WorldCache { /** * Tell the client to hide or show the coordinates. * - * If {@link #isPrefersShowCoordinates()} is true, coordinates will be shown, unless either of the following conditions apply: - * - *
  • {@link GeyserSession#isReducedDebugInfo()} is enabled - *
  • {@link GeyserConfiguration#isShowCoordinates()} is disabled - * + * If {@link #prefersShowCoordinates} is true, coordinates will be shown, unless either of the following conditions apply:
    + *
    + * {@link GeyserSession#reducedDebugInfo} is enabled + * {@link GeyserConfiguration#isShowCoordinates()} is disabled */ public void updateShowCoordinates() { boolean allowShowCoordinates = !session.isReducedDebugInfo() && session.getConnector().getConfig().isShowCoordinates();