diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-16 01:19:05 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-16 01:19:05 +0100 |
commit | d35ff97eaec52dd4e321d338b2e16d20c8b022f7 (patch) | |
tree | 4a303de432b57aa5f793ebc45ea633a2203f3155 /src/main/java/at/hannibal2 | |
parent | 863171239966b4fdda9a3755b6c825a2d8e69467 (diff) | |
download | skyhanni-d35ff97eaec52dd4e321d338b2e16d20c8b022f7.tar.gz skyhanni-d35ff97eaec52dd4e321d338b2e16d20c8b022f7.tar.bz2 skyhanni-d35ff97eaec52dd4e321d338b2e16d20c8b022f7.zip |
Reformatted best crop time
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/GardenBestCropTime.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenBestCropTime.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenBestCropTime.kt index d5920658f..bea64af34 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/GardenBestCropTime.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/GardenBestCropTime.kt @@ -47,14 +47,14 @@ class GardenBestCropTime { val color = if (isCurrent) "§e" else "" number++ if (number > config.cropMilestoneShowOnlyBest && !isCurrent) continue - val cropNameDisplay = "$number# $color$cropName" + val cropNameDisplay = "§7$number# $color$cropName" if (gardenExp) { val crops = GardenCropMilestones.cropCounter[cropName]!! val currentTier = GardenCropMilestones.getTierForCrops(crops) val gardenExpForTier = getGardenExpForTier(currentTier + 1) - display.add(Collections.singletonList(" $cropNameDisplay §b$duration §7(§2$gardenExpForTier §7Exp)")) + display.add(Collections.singletonList("$cropNameDisplay §b$duration §7(§2$gardenExpForTier §7Exp)")) } else { - display.add(Collections.singletonList(" $cropNameDisplay §b$duration")) + display.add(Collections.singletonList("$cropNameDisplay §b$duration")) } } } |