Skip to content

Commit

Permalink
Fix onGround
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Aug 5, 2023
1 parent 9cd5bda commit bfbc55c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public static void generalCommonUniforms(UniformHolder uniforms, FrameUpdateNoti
}

private static boolean isOnGround() {
return client.player != null && client.player.isOnGround();
return client.player != null && client.player.onGround();
}

private static boolean isHurt() {
Expand Down

0 comments on commit bfbc55c

Please sign in to comment.