diff --git a/src/main/java/meteordevelopment/meteorclient/mixin/PlayerListHudMixin.java b/src/main/java/meteordevelopment/meteorclient/mixin/PlayerListHudMixin.java index ecb00bd57d..2785dcc781 100644 --- a/src/main/java/meteordevelopment/meteorclient/mixin/PlayerListHudMixin.java +++ b/src/main/java/meteordevelopment/meteorclient/mixin/PlayerListHudMixin.java @@ -42,7 +42,7 @@ private int modifyWidth(int width) { return module.isActive() && module.accurateLatency.get() ? width + 30 : width; } - @ModifyConstant(constant = @Constant(intValue = 20), method = "render") + @ModifyConstant(require = 0, constant = @Constant(intValue = 20), method = "render") private int modifyHeight(int height) { BetterTab module = Modules.get().get(BetterTab.class); return module.isActive() ? module.tabHeight.get() : height;