diff options
| author | thesefer <20844000+thesefer@users.noreply.github.com> | 2023-04-26 21:58:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-26 21:58:21 +0200 |
| commit | b7b1f37f93e1df412b3a4603c184a1856a72b8f9 (patch) | |
| tree | 13a12a425f03256eb82dcf4f93682ff37a01c143 /src/main/java/at/hannibal2/skyhanni/config | |
| parent | a575ac91e1efb6f398e5bfd43fd2428c3251f928 (diff) | |
| download | skyhanni-b7b1f37f93e1df412b3a4603c184a1856a72b8f9.tar.gz skyhanni-b7b1f37f93e1df412b3a4603c184a1856a72b8f9.tar.bz2 skyhanni-b7b1f37f93e1df412b3a4603c184a1856a72b8f9.zip | |
Option to stay within the display limit for Crop Time/Money (#59)
Co-authored-by: Roman / Linnea Gräf <roman.graef@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 12 |
1 files changed, 12 insertions, 0 deletions
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( |
