From fcc31674e40ed044f46813c2185f8de29d974932 Mon Sep 17 00:00:00 2001 From: Obsidian <108832807+Obsidianninja11@users.noreply.github.com> Date: Sat, 22 Jun 2024 03:50:06 -0500 Subject: Improvement: Add hover descriptions to many ClickableChat messages (#1919) Co-authored-by: Cal Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/features/commands/PartyChatCommands.kt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/commands') 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 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, ) } -- cgit