diff --git a/core/src/main/java/org/geysermc/geyser/session/GeyserSession.java b/core/src/main/java/org/geysermc/geyser/session/GeyserSession.java index 5e20e5e81..63cf4997d 100644 --- a/core/src/main/java/org/geysermc/geyser/session/GeyserSession.java +++ b/core/src/main/java/org/geysermc/geyser/session/GeyserSession.java @@ -561,9 +561,8 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource { private MinecraftProtocol protocol; private boolean tickingFrozen = false; - /* - * The amount of ticks requested by the server that the - * game should proceed with, even if game ticking is frozen. + /** + * The amount of ticks requested by the server that the game should proceed with, even if the game tick loop is frozen. */ @Setter private int stepTicks = 0; @@ -2080,4 +2079,4 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource { packet.setSoftEnum(new CommandEnumData(name, Collections.singletonMap(enums, Collections.emptySet()), true)); sendUpstreamPacket(packet); } -} \ No newline at end of file +}