Describe the bug
currently in the onRender method in InGameHudMixin the following line is present
|
MeteorClient.EVENT_BUS.post(Render2DEvent.get(context, context.getScaledWindowWidth(), context.getScaledWindowWidth(), tickCounter.getTickProgress(true))); |
MeteorClient.EVENT_BUS.post(Render2DEvent.get(context, context.getScaledWindowWidth(), context.getScaledWindowWidth(), tickCounter.getTickProgress(true)));
this passes in context.getScaledWindowWidth() twice when it should (I would assume) be passing in getScaledWindowHeight()
MeteorClient.EVENT_BUS.post(Render2DEvent.get(context, context.getScaledWindowWidth(), context.getScaledWindowHeight(), tickCounter.getTickProgress(true)));
Steps to reproduce
look at this line:
|
MeteorClient.EVENT_BUS.post(Render2DEvent.get(context, context.getScaledWindowWidth(), context.getScaledWindowWidth(), tickCounter.getTickProgress(true))); |
Meteor Version
1.21.11-46
Minecraft Version
1.21.11
Operating System
macOS
Before submitting a bug report
Describe the bug
currently in the onRender method in InGameHudMixin the following line is present
meteor-client/src/main/java/meteordevelopment/meteorclient/mixin/InGameHudMixin.java
Line 42 in 47a4ad5
this passes in context.getScaledWindowWidth() twice when it should (I would assume) be passing in getScaledWindowHeight()
Steps to reproduce
look at this line:
meteor-client/src/main/java/meteordevelopment/meteorclient/mixin/InGameHudMixin.java
Line 42 in 47a4ad5
Meteor Version
1.21.11-46
Minecraft Version
1.21.11
Operating System
macOS
Before submitting a bug report
This bug wasn't already reported (I have searched bug reports on GitHub).
This is a valid bug (I am able to reproduce this on the latest dev build).