diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-08-11 22:06:21 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-08-11 22:06:21 +0200 |
commit | 78dcb458d81de56c845faad356d10f8fc6fd8826 (patch) | |
tree | fdf4c0e97c701bf1b9e42cb7e1071354526422a4 | |
parent | 184afa85c57ff2bfab2819a75299b6144a7c4a1b (diff) | |
download | skyhanni-78dcb458d81de56c845faad356d10f8fc6fd8826.tar.gz skyhanni-78dcb458d81de56c845faad356d10f8fc6fd8826.tar.bz2 skyhanni-78dcb458d81de56c845faad356d10f8fc6fd8826.zip |
changed /shtestmessage logic
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/command/TestChatCommand.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/TestChatCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/TestChatCommand.kt index 5b36d1863..e9d8d6145 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/command/TestChatCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/command/TestChatCommand.kt @@ -47,7 +47,8 @@ object TestChatCommand { return } else ChatComponentText(text.replace("&", "§")) - if (!isHidden) ChatUtils.chat("Testing message: §7${component.formattedText}", prefixColor = "§a") + // TODO add additional hide parameter +// if (!isHidden) ChatUtils.chat("Testing message: §7${component.formattedText}", prefixColor = "§a") test(component, isHidden) } |