diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-14 19:09:40 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-14 19:09:40 +0200 |
commit | d9191de0d4670d8e710c556210fea64b351090e2 (patch) | |
tree | 697a7559c9844506881d3af4cf7b57e0fd21e8ff /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 182e27f2dbf13574e43e30ef1937237d4b9be21f (diff) | |
download | skyhanni-d9191de0d4670d8e710c556210fea64b351090e2.tar.gz skyhanni-d9191de0d4670d8e710c556210fea64b351090e2.tar.bz2 skyhanni-d9191de0d4670d8e710c556210fea64b351090e2.zip |
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)
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 8 |
1 files changed, 8 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 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 @@ -635,6 +635,14 @@ public class Garden { public List<Integer> 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); @Expose |