diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-24 17:30:19 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-24 17:30:19 +0100 |
commit | 2c1ef94ec474c18cac79b8a31d86a7f304ca1d8e (patch) | |
tree | 1d6f1e8ff2f6a4bb8a6b86ee66947ed0874f28da /src/main/java/at/hannibal2/skyhanni | |
parent | 2567f766c7ec5df02adcabfacd02974c83c9c72a (diff) | |
download | skyhanni-2c1ef94ec474c18cac79b8a31d86a7f304ca1d8e.tar.gz skyhanni-2c1ef94ec474c18cac79b8a31d86a7f304ca1d8e.tar.bz2 skyhanni-2c1ef94ec474c18cac79b8a31d86a7f304ca1d8e.zip |
Changed the color of the brackets.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenNextPlotPrice.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenNextPlotPrice.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenNextPlotPrice.kt index 096683798..c2a52e7f0 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenNextPlotPrice.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenNextPlotPrice.kt @@ -36,7 +36,7 @@ class GardenNextPlotPrice { val lowestBin = NEUItems.getPrice(NEUItems.getInternalName(itemName)) val price = lowestBin * amount val format = NumberUtil.format(price) - list[i] = list[i] + " §f(§6$format§f)" + list[i] = list[i] + " §7(§6$format§7)" } break } diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt index 3f3784951..b1f266953 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenVisitorFeatures.kt @@ -129,7 +129,7 @@ class GardenVisitorFeatures { val price = lowestBin * amount totalPrice += price val format = NumberUtil.format(price) - list[i] = "$line §f(§6$format§f)" + list[i] = "$line §7(§6$format§7)" amountDifferentItems++ } } |