From d9191de0d4670d8e710c556210fea64b351090e2 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 14 Apr 2023 19:09:40 +0200 Subject: Removed enchanted bread from Crop Money Per Hour List Added enchanted seeds to Crop Per Hour Added option to merge seeds to wheat prices (default enabled) --- src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 8 ++++++++ 1 file changed, 8 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 c0dc1360b..40f55bd83 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -634,6 +634,14 @@ public class Garden { @ConfigAccordionId(id = 13) public List moneyPerHourCustomFormat = new ArrayList<>(Arrays.asList(0, 1, 2)); + @Expose + @ConfigOption( + name = "Merge Seeds", + desc = "Merge the seeds price with the wheat price.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourMergeSeeds = true; + @Expose public Position moneyPerHourPos = new Position(16, -232, false, true); -- cgit