diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt | 8 |
1 files changed, 6 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 4f3b3713c..0d91c7f62 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/SlayerAPI.kt @@ -47,9 +47,13 @@ object SlayerAPI { val totalPrice = maxPrice * amount val format = totalPrice.shortFormat() - val priceFormat = " §7(§6$format coins§7)" - "$amountFormat$displayName$priceFormat" to totalPrice + if (internalName == NEUInternalName.SKYBLOCK_COIN) { + "§6$format coins" to totalPrice + } else { + val priceFormat = " §7(§6$format coins§7)" + "$amountFormat$displayName$priceFormat" to totalPrice + } } @SubscribeEvent |
