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.

merge: fixing #47

Fixed #47, by replacing windowWidth for windowHeight

authored by

Legoraft and committed by
GitHub
b9a3e476 5fee70df

+2 -2
+1 -1
gradle.properties
··· 9 9 loader_version=0.15.11 10 10 11 11 # Mod Properties 12 - mod_version=1.4.4 12 + mod_version=1.4.5 13 13 maven_group=com.armorhud 14 14 archives_base_name=simple-armor-hud 15 15
+1 -1
src/client/java/com/armorhud/mixin/client/tooltipMixin.java
··· 12 12 13 13 @ModifyVariable(method = "renderHeldItemTooltip", at = @At("STORE"), ordinal = 2) 14 14 public int renderHeldItemTooltip(int k, DrawContext context) { 15 - return context.getScaledWindowWidth() - 62; 15 + return context.getScaledWindowHeight() - 62; 16 16 } 17 17 18 18 }