From 234a02aaf6beabc5e879fa0366295e76e11732be Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 23 Apr 2023 00:52:58 +0200 Subject: Best crop time compact display now hides the # number too --- .../hannibal2/skyhanni/features/garden/farming/GardenBestCropTime.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenBestCropTime.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenBestCropTime.kt index 7810ccb8e..23ea2e33b 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenBestCropTime.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/farming/GardenBestCropTime.kt @@ -65,7 +65,9 @@ class GardenBestCropTime { if (number > config.cropMilestoneShowOnlyBest && !isCurrent) continue val list = mutableListOf() - list.add("§7$number# ") + if (!config.cropMilestoneBestCompact) { + list.add("§7$number# ") + } list.addCropIcon(crop) val color = if (isCurrent) "§e" else "§7" -- cgit