Skip to content

Commit

Permalink
fixed a stupid error with getArmor uniform mb
Browse files Browse the repository at this point in the history
  • Loading branch information
snowfallin authored Dec 26, 2023
1 parent 70c55db commit 9600c93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private static float getCurrentArmor() {
return -1;
}

return (float) Minecraft.getInstance().player.getArmor() / (float) 50.0);
return (float) Minecraft.getInstance().player.getArmor() / (float) 50.0;
}

private static float getMaxAir() {
Expand Down

0 comments on commit 9600c93

Please sign in to comment.