Skip to content

Commit

Permalink
Fix frozen variable getter
Browse files Browse the repository at this point in the history
  • Loading branch information
letsgoawaydev authored Jul 13, 2024
1 parent 3d957e3 commit 91a1a12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,7 @@ protected void tick() {
isInWorldBorderWarningArea = false;
}

if (!isFrozen()) {
if (!frozen) {
for (Tickable entity : entityCache.getTickableEntities()) {
entity.tick();
}
Expand Down

0 comments on commit 91a1a12

Please sign in to comment.