aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-19 21:20:18 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-19 21:20:18 +0200
commit9594c23b95f795b25adc8be415ed38f1f46634fb (patch)
tree7b108524b58acce3b60d1bc6cec60c02e6bf4af9
parent24ac5fb6dbdb793ce0eeac92c80c24f64f0868de (diff)
downloadskyhanni-9594c23b95f795b25adc8be415ed38f1f46634fb.tar.gz
skyhanni-9594c23b95f795b25adc8be415ed38f1f46634fb.tar.bz2
skyhanni-9594c23b95f795b25adc8be415ed38f1f46634fb.zip
addSeparators
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerItemProfitTracker.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerItemProfitTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerItemProfitTracker.kt
index c04d662e2..9faa3511b 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerItemProfitTracker.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerItemProfitTracker.kt
@@ -196,7 +196,7 @@ object SlayerItemProfitTracker {
val renderable = if (inventoryOpen) Renderable.clickAndHover(
text, listOf(
- "§7Dropped §e$timesDropped §7times.",
+ "§7Dropped §e${timesDropped.addSeparators()} §7times.",
"§7Your drop rate: §c$perBoss",
"",
"§eClick to " + (if (hidden) "show" else "hide") + "!",
@@ -250,8 +250,8 @@ object SlayerItemProfitTracker {
val slayerCompletedCount = itemLog.slayerCompletedCount
addAsSingletonList(
Renderable.hoverTips(
- "§7Bosses killed: §e$slayerCompletedCount",
- listOf("§7You killed the $itemLogCategory boss", "§e$slayerCompletedCount §7times.")
+ "§7Bosses killed: §e${slayerCompletedCount.addSeparators()}",
+ listOf("§7You killed the $itemLogCategory boss", "§e${slayerCompletedCount.addSeparators()} §7times.")
)
)