summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/fishing
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-25 03:32:31 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-25 03:32:31 +0100
commit0ee3f2095cabddbf85016e3a5eee9cee4435d16b (patch)
treeeb90d71cc88d9b96133fde7d8849c84f65380660 /src/main/java/at/hannibal2/skyhanni/features/fishing
parentd523de1e3e4e39bd55d1b1426a4ead961ffcfa69 (diff)
downloadskyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.tar.gz
skyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.tar.bz2
skyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.zip
format coin numbers
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/fishing')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/fishing/tracker/FishingProfitTracker.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/tracker/FishingProfitTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/tracker/FishingProfitTracker.kt
index fd097d68b..d5433c9bf 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/fishing/tracker/FishingProfitTracker.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/tracker/FishingProfitTracker.kt
@@ -116,7 +116,7 @@ object FishingProfitTracker {
val profitPerCatch = profit / data.totalCatchAmount
val profitPerCatchFormat = NumberUtil.format(profitPerCatch)
- val text = "§eTotal Profit: $profitPrefix$profitFormat"
+ val text = "§eTotal Profit: $profitPrefix$profitFormat coins"
addAsSingletonList(Renderable.hoverTips(text, listOf("§7Profit per catch: $profitPrefix$profitPerCatchFormat")))
tracker.addPriceFromButton(this)