aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-03 12:28:10 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-05-03 12:28:10 +0200
commitd3fead15de3059797badc592738a3989ae8374bf (patch)
tree8babb90eedf24c681a6dbf532804d29e75374435 /src/main/java/at/hannibal2/skyhanni
parent16125a567e77d1934217bf6da08132ca69758950 (diff)
downloadskyhanni-d3fead15de3059797badc592738a3989ae8374bf.tar.gz
skyhanni-d3fead15de3059797badc592738a3989ae8374bf.tar.bz2
skyhanni-d3fead15de3059797badc592738a3989ae8374bf.zip
remove shtoggle in hover text
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt b/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt
index 30ad1b728..b155f2b73 100644
--- a/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt
+++ b/src/main/java/at/hannibal2/skyhanni/utils/ChatUtils.kt
@@ -152,7 +152,7 @@ object ChatUtils {
val fullCommand = "/" + command.removePrefix("/")
text.chatStyle.chatClickEvent = ClickEvent(ClickEvent.Action.RUN_COMMAND, fullCommand)
text.chatStyle.chatHoverEvent =
- HoverEvent(HoverEvent.Action.SHOW_TEXT, ChatComponentText("§eExecute $fullCommand"))
+ HoverEvent(HoverEvent.Action.SHOW_TEXT, ChatComponentText("§eClick here!"))
return text
}