aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/commands
diff options
context:
space:
mode:
authorObsidian <108832807+Obsidianninja11@users.noreply.github.com>2024-06-22 03:50:06 -0500
committerGitHub <noreply@github.com>2024-06-22 10:50:06 +0200
commitfcc31674e40ed044f46813c2185f8de29d974932 (patch)
tree36a8721820fa98db8ec1eeb173340ef1f9242d26 /src/main/java/at/hannibal2/skyhanni/features/commands
parent1dff52a075c6873dd53342f4094ecf904d4f9d67 (diff)
downloadskyhanni-fcc31674e40ed044f46813c2185f8de29d974932.tar.gz
skyhanni-fcc31674e40ed044f46813c2185f8de29d974932.tar.bz2
skyhanni-fcc31674e40ed044f46813c2185f8de29d974932.zip
Improvement: Add hover descriptions to many ClickableChat messages (#1919)
Co-authored-by: Cal <cwolfson58@gmail.com> Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt b/src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
index 59b652f66..05b04982d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt
@@ -97,7 +97,8 @@ object PartyChatCommands {
if (config.showIgnoredReminder) ChatUtils.clickableChat(
"§cIgnoring chat command from ${event.author}. " +
"Unignore them using /shignore remove <player> or click here!",
- onClick = { blacklistModify(event.author) }
+ onClick = { blacklistModify(event.author) },
+ "§eClick to ignore ${event.author}!",
)
return
}
@@ -105,7 +106,7 @@ object PartyChatCommands {
if (config.showIgnoredReminder) {
ChatUtils.chat(
"§cIgnoring chat command from $name. " +
- "Change your party chat command settings or /friend (best) them."
+ "Change your party chat command settings or /friend (best) them.",
)
}
return
@@ -170,7 +171,8 @@ object PartyChatCommands {
storage.blacklistedUsers.clear()
ChatUtils.chat("Cleared your ignored players list!")
},
- oneTimeClick = true
+ "§eClick to confirm.",
+ oneTimeClick = true,
)
}