diff options
author | Wyvest <wyvestbusiness@gmail.com> | 2023-07-15 13:43:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-15 13:43:25 +0900 |
commit | 1dbe363d00e84fe12230f66a24a530d581426910 (patch) | |
tree | e0fbd90c380bc50472af110f833260d5aa1351a8 | |
parent | 3b502355eb3c792a2b9d8395877068c679892ea8 (diff) | |
download | Chatting-1dbe363d00e84fe12230f66a24a530d581426910.tar.gz Chatting-1dbe363d00e84fe12230f66a24a530d581426910.tar.bz2 Chatting-1dbe363d00e84fe12230f66a24a530d581426910.zip |
fix skytils copy chat notification
-rw-r--r-- | src/main/kotlin/cc/woverflow/chatting/Chatting.kt | 2 |
1 files changed, 1 insertions, 1 deletions
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( |