From b7b1f37f93e1df412b3a4603c184a1856a72b8f9 Mon Sep 17 00:00:00 2001 From: thesefer <20844000+thesefer@users.noreply.github.com> Date: Wed, 26 Apr 2023 21:58:21 +0200 Subject: Option to stay within the display limit for Crop Time/Money (#59) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Roman / Linnea Gräf --- .../java/at/hannibal2/skyhanni/config/features/Garden.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index 3f89d4def..0dcd42809 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -275,6 +275,12 @@ public class Garden { @ConfigAccordionId(id = 7) public int cropMilestoneShowOnlyBest = 10; + @Expose + @ConfigOption(name = "Extend top list", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 7) + public boolean cropMilestoneShowCurrent = true; + // TODO moulconfig runnable support @Expose @ConfigOption( @@ -625,6 +631,12 @@ public class Garden { @ConfigAccordionId(id = 13) public int moneyPerHourShowOnlyBest = 5; + @Expose + @ConfigOption(name = "Extend top list", desc = "Add current crop to the list if its lower ranked than the set limit by extending the list.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourShowCurrent = true; + // TODO moulconfig runnable support @Expose @ConfigOption( -- cgit