From ee41c672e89adab01a42f3bd27c1aa0d4fe5d069 Mon Sep 17 00:00:00 2001 From: "Erymanthus[#5074] | (u/)RayDeeUx" <51521765+RayDeeUx@users.noreply.github.com> Date: Tue, 16 Jan 2024 07:55:50 -0500 Subject: [PATCH] add clickable to disclaimer Signed-off-by: Erymanthus[#5074] | (u/)RayDeeUx <51521765+RayDeeUx@users.noreply.github.com> --- .../skyhanni/features/mining/CommissionsCalculator.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main/java/at/hannibal2/skyhanni/features/mining/CommissionsCalculator.kt b/src/main/java/at/hannibal2/skyhanni/features/mining/CommissionsCalculator.kt index 7b9c0aa1f943..b799be85f6df 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/mining/CommissionsCalculator.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/mining/CommissionsCalculator.kt @@ -61,10 +61,12 @@ class CommissionsCalculator { private val firstLine: String = "§lCommissions Calculator:" private val fatDisclaimer: List = listOf( Renderable.string("§c§lDisclaimer: §r§cThis calculator does not include"), - Renderable.string("§cother potential sources of HOTM XP, including the"), - Renderable.string("§c900 HOTM XP Daily Bonus or potential boosts from"), - Renderable.string("§cthe Bingo pet."), - Renderable.string("§cTo update these calculations, please open /hotm.") + Renderable.string("§cother sources of HOTM XP, including the 900 HOTM XP"), + Renderable.string("§cDaily Bonus, HOTM XP from completing the Crystal"), + Renderable.string("§cNucleus and Mining Events, or boosts from Bingo pets."), + Renderable.clickAndHover("§cTo update these calculations, open the §e/hotm §ctree.", + listOf("Click to run §e/hotm"), onClick = { LorenzUtils.sendCommandToServer("hotm") } + ), ) private var currentHOTMLevel: Int = 0