1 2 3 4 5 6 7 8 9 10 11
package moe.nea.ultranotifier.mixin; import net.minecraft.client.gui.hud.ChatHud; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.gen.Invoker; @Mixin(ChatHud.class) public interface AccessorChatHud { @Invoker("getLineHeight") int getLineHeight_ultranotifier(); }