A mod that adds your armor to the hud modrinth.com/mod/simple-armor-hud
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixed #10 by checking if air meter is full

authored by

LegoRaft and committed by
GitHub
7cdfe3df b2bcd9c7

+1 -1
+1 -1
src/main/java/net/legoraft/armorhud/mixin/hudMixin.java
··· 32 32 int h = 63; 33 33 34 34 // Moves armorhud up if player is under water 35 - if (client.player.isSubmergedInWater() && !client.player.isCreative()) { 35 + if (client.player.getAir() < client.player.getMaxAir()) { 36 36 i = this.scaledHeight - 65; 37 37 } 38 38 // Moves armorhud down if player is in creative