
drawTexture for default case is called with modified args in InGameHudMixin leading to mod incompatibility
qualterz opened this issue ยท 4 comments
There is a problem that the original arguments are not passed to the drawTexture
method, and this causes incompatibility with other mods
For example, if some other mod modifies x
and y
arguments, this mod replaces this modifications with own values
This is why Lookaround! mod does not working correctly with this mod, here arguments are modified
Replacing line 45 with InGameHud.drawTexture(matrices, x, y, 0, 0, 15, 15, 15, 15);
and replacing line 54 with inGameHud.drawTexture(matrices, x, y, u, v, width, height);
should fix some other potential incompatibilities like this one.