Fix javadoc comment in Geyser Session

This commit is contained in:
LetsGoAway 2024-07-25 13:53:54 +08:00 committed by GitHub
parent 2da55999a9
commit 09bfe4b60d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);
}
}
}