diff options
author | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-03-29 14:58:34 -0400 |
---|---|---|
committer | Kevinthegreat <92656833+kevinthegreat1@users.noreply.github.com> | 2023-03-29 14:58:34 -0400 |
commit | 08f3f6a515efebcea13c649828925f4ccf3759d8 (patch) | |
tree | 9fbe7ae39202d976ae802a362cb2df3649f060b1 /src/main/java | |
parent | 62641e3600cc13fccddcd952e4aeb90ae2ebf5a7 (diff) | |
download | Skyblocker-08f3f6a515efebcea13c649828925f4ccf3759d8.tar.gz Skyblocker-08f3f6a515efebcea13c649828925f4ccf3759d8.tar.bz2 Skyblocker-08f3f6a515efebcea13c649828925f4ccf3759d8.zip |
Fixed InGameHudMixin
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/me/xmrvizzy/skyblocker/mixin/InGameHudMixin.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/me/xmrvizzy/skyblocker/mixin/InGameHudMixin.java b/src/main/java/me/xmrvizzy/skyblocker/mixin/InGameHudMixin.java index 7f25b339..60f4af53 100644 --- a/src/main/java/me/xmrvizzy/skyblocker/mixin/InGameHudMixin.java +++ b/src/main/java/me/xmrvizzy/skyblocker/mixin/InGameHudMixin.java @@ -69,7 +69,7 @@ public abstract class InGameHudMixin extends DrawableHelper { } @Inject(method = "renderHotbarItem", at = @At("HEAD")) - public void renderHotbarItem(int i, int j, float f, PlayerEntity player, ItemStack stack, int seed, CallbackInfo ci) { + public void renderHotbarItem(MatrixStack matrices, int i, int j, float f, PlayerEntity player, ItemStack stack, int seed, CallbackInfo ci) { if (Utils.isOnSkyblock) { if (HotbarSlotLock.isLocked(hotbarSlotIndex)) { RenderSystem.setShaderTexture(0,SLOT_LOCK); |