From 09bfe4b60d6e46b3f45f47bf945761585407a845 Mon Sep 17 00:00:00 2001 From: LetsGoAway <68365423+letsgoawaydev@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:53:54 +0800 Subject: [PATCH] Fix javadoc comment in Geyser Session --- .../java/org/geysermc/geyser/session/GeyserSession.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 +}