Fix frozen variable getter

This commit is contained in:
LetsGoAway 2024-07-13 11:22:45 +08:00 committed by GitHub
parent 3d957e35b8
commit 91a1a12651
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1209,7 +1209,7 @@ public class GeyserSession implements GeyserConnection, GeyserCommandSource {
isInWorldBorderWarningArea = false;
}
if (!isFrozen()) {
if (!frozen) {
for (Tickable entity : entityCache.getTickableEntities()) {
entity.tick();
}