From 1dbe363d00e84fe12230f66a24a530d581426910 Mon Sep 17 00:00:00 2001 From: Wyvest Date: Sat, 15 Jul 2023 13:43:25 +0900 Subject: fix skytils copy chat notification --- src/main/kotlin/cc/woverflow/chatting/Chatting.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt index 4347b1e..9452dcf 100644 --- a/src/main/kotlin/cc/woverflow/chatting/Chatting.kt +++ b/src/main/kotlin/cc/woverflow/chatting/Chatting.kt @@ -141,7 +141,7 @@ object Chatting { skytilsClass.getMethod("writeData").invoke(instance) }) } - val copyChat = skytilsClass.getDeclaredField("chatTabs") + val copyChat = skytilsClass.getDeclaredField("copyChat") copyChat.isAccessible = true if (copyChat.getBoolean(instance)) { Notifications.INSTANCE.send( -- cgit