summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-14 15:48:37 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-14 15:48:37 +0200
commita996d8150ef2367e7c839f3565d60bdb68d2125d (patch)
tree4da38c50d07b3e2cfa0352694d254225a715715e /src/main/java/at/hannibal2/skyhanni/data
parent9f55fd15544e187491d78e2c5ecf2f2ed8ac76f1 (diff)
downloadskyhanni-a996d8150ef2367e7c839f3565d60bdb68d2125d.tar.gz
skyhanni-a996d8150ef2367e7c839f3565d60bdb68d2125d.tar.bz2
skyhanni-a996d8150ef2367e7c839f3565d60bdb68d2125d.zip
Revert "creating and using Number.format()"
This reverts commit 9f55fd15544e187491d78e2c5ecf2f2ed8ac76f1.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt
index 64a2e9387..93870b119 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt
@@ -14,7 +14,7 @@ import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.NEUInternalName
import at.hannibal2.skyhanni.utils.NEUItems.getNpcPriceOrNull
import at.hannibal2.skyhanni.utils.NEUItems.getPrice
-import at.hannibal2.skyhanni.utils.NumberUtil.format
+import at.hannibal2.skyhanni.utils.NumberUtil
import at.hannibal2.skyhanni.utils.RecalculatingValue
import at.hannibal2.skyhanni.utils.SimpleTimeMark
import at.hannibal2.skyhanni.utils.TimeLimitedCache
@@ -46,7 +46,7 @@ object SlayerAPI {
val maxPrice = npcPrice.coerceAtLeast(price)
val totalPrice = maxPrice * amount
- val format = totalPrice.format()
+ val format = NumberUtil.format(totalPrice)
val priceFormat = " §7(§6$format coins§7)"
"$amountFormat$displayName$priceFormat" to totalPrice