From 1b3670de60500c491e5c61b0d304bcde7e30080f Mon Sep 17 00:00:00 2001 From: Wyvest <45589059+Wyvest@users.noreply.github.com> Date: Sat, 14 Jan 2023 12:13:13 -0500 Subject: various new features - right click to copy chat message - tooltip text render type - delete button for individual chat lines - copying chat messages now always shows a notification output --- src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java') diff --git a/src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java b/src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java index 8b81a50..d4fd524 100644 --- a/src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java +++ b/src/main/java/cc/woverflow/chatting/mixin/GuiNewChatAccessor.java @@ -12,6 +12,9 @@ public interface GuiNewChatAccessor { @Accessor List getDrawnChatLines(); + @Accessor + List getChatLines(); + @Accessor int getScrollPos(); } -- cgit