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 | 46a8178691cf6188e1a531425a3b009467d71d5a (patch) | |
| tree | 4a303de432b57aa5f793ebc45ea633a2203f3155 | |
| parent | 7d78544de10e1bf24cfb598d063ed464a89884f6 (diff) | |
| download | SkyHanni-46a8178691cf6188e1a531425a3b009467d71d5a.tar.gz SkyHanni-46a8178691cf6188e1a531425a3b009467d71d5a.tar.bz2 SkyHanni-46a8178691cf6188e1a531425a3b009467d71d5a.zip | |
Reformatted best crop time
| -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")) } } } |
