diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 03:32:31 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-25 03:32:31 +0100 |
commit | 0ee3f2095cabddbf85016e3a5eee9cee4435d16b (patch) | |
tree | eb90d71cc88d9b96133fde7d8849c84f65380660 /src/main/java/at/hannibal2/skyhanni/features/slayer | |
parent | d523de1e3e4e39bd55d1b1426a4ead961ffcfa69 (diff) | |
download | skyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.tar.gz skyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.tar.bz2 skyhanni-0ee3f2095cabddbf85016e3a5eee9cee4435d16b.zip |
format coin numbers
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/slayer')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerProfitTracker.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerProfitTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerProfitTracker.kt index f77ae2121..3e69cfcca 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerProfitTracker.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/SlayerProfitTracker.kt @@ -196,7 +196,7 @@ object SlayerProfitTracker { val profitPerBoss = profit / itemLog.slayerCompletedCount val profitPerBossFormat = NumberUtil.format(profitPerBoss) - val text = "§eTotal Profit: $profitPrefix$profitFormat" + val text = "§eTotal Profit: $profitPrefix$profitFormat coins" addAsSingletonList(Renderable.hoverTips(text, listOf("§7Profit per boss: $profitPrefix$profitPerBossFormat"))) tracker.addPriceFromButton(this) |