From a80c1f64d839265caae279a4e200920b39ef3149 Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Mon, 7 Aug 2023 19:36:45 +1000 Subject: Merge pull request #350 Garden Money per Hour now uses the dicer drops from melon and pumpkins as well. --- .../hannibal2/skyhanni/config/features/Garden.java | 26 +++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (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 2c6ad50bb..5244aac76 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -801,7 +801,7 @@ public class Garden { @Expose @ConfigOption(name = "Show money per Hour", desc = "Displays the money per hour YOU get with YOUR crop/minute value when selling the item to bazaar. " + - "Supports Bountiful and Mushroom Cow Perk.") + "Supports Bountiful, Mushroom Cow Perk and Dicer drops. Thier toggles are below.") @ConfigEditorBoolean @ConfigAccordionId(id = 13) public boolean moneyPerHourDisplay = true; @@ -879,6 +879,30 @@ public class Garden { @ConfigAccordionId(id = 13) public boolean moneyPerHourMergeSeeds = true; + @Expose + @ConfigOption( + name = "Include Bountiful", + desc = "Includes the coins from bountiful in the calculation.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourBountiful = true; + + @Expose + @ConfigOption( + name = "Include Mooshroom Cow", + desc = "Includes the coins you get from selling the mushrooms from your mooshroom cow pet.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourMooshroom = true; + + @Expose + @ConfigOption( + name = "Include Dicer Drops", + desc = "Includes the average coins/hr from your melon or pumpkin dicer.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourDicer = true; + @Expose @ConfigOption( name = "Hide Title", -- cgit