aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorWyvest <wyvestbusiness@gmail.com>2023-11-23 16:04:46 +0900
committerWyvest <wyvestbusiness@gmail.com>2023-11-23 16:04:46 +0900
commit97a700fe1af0360b6deed3c6b0b0a3839d5a690d (patch)
treefcced3e6f5be183c519e8245796e3b9377c80a61 /src/main/java
parent8b373f577d9c6dde26357ef3fc86691f1efef9b4 (diff)
downloadChatting-97a700fe1af0360b6deed3c6b0b0a3839d5a690d.tar.gz
Chatting-97a700fe1af0360b6deed3c6b0b0a3839d5a690d.tar.bz2
Chatting-97a700fe1af0360b6deed3c6b0b0a3839d5a690d.zip
fix mixin 0.7.11 compat
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/org/polyfrost/chatting/mixin/GuiChatMixin.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/polyfrost/chatting/mixin/GuiChatMixin.java b/src/main/java/org/polyfrost/chatting/mixin/GuiChatMixin.java
index 303326f..167bbd4 100644
--- a/src/main/java/org/polyfrost/chatting/mixin/GuiChatMixin.java
+++ b/src/main/java/org/polyfrost/chatting/mixin/GuiChatMixin.java
@@ -119,8 +119,8 @@ public abstract class GuiChatMixin extends GuiScreen {
} else if ((hook.getRight() + ModCompatHooks.getXOffset() + 13) <= x && (hook.getRight() + ModCompatHooks.getXOffset()) + 23 > x) {
ChatLine chatLine = hook.getHoveredLine(Mouse.getY());
if (chatLine == null) return;
- ((GuiNewChatAccessor) Minecraft.getMinecraft().ingameGUI.getChatGUI()).getDrawnChatLines().removeIf(line -> ((ChatLineHook) line).getUniqueId() == ((ChatLineHook) chatLine).getUniqueId());
- ((GuiNewChatAccessor) Minecraft.getMinecraft().ingameGUI.getChatGUI()).getChatLines().removeIf(line -> ((ChatLineHook) line).getUniqueId() == ((ChatLineHook) chatLine).getUniqueId());
+ ModCompatHooks.getDrawnChatLines().removeIf(line -> ((ChatLineHook) line).getUniqueId() == ((ChatLineHook) chatLine).getUniqueId());
+ ModCompatHooks.getChatLines().removeIf(line -> ((ChatLineHook) line).getUniqueId() == ((ChatLineHook) chatLine).getUniqueId());
}
}