From 26031387bb9408e20ad9aaf375300a400119e03c Mon Sep 17 00:00:00 2001 From: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:48:40 +1000 Subject: Feature: Armor drops to $/hr (#427) Added Armor Drops to Money per Hour display. #427 --- .../at/hannibal2/skyhanni/config/features/GardenConfig.java | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java index 0e3ccc3c5..af2de3bdc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java @@ -862,8 +862,8 @@ public class GardenConfig { @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, Mooshroom Cow Perk and Dicer drops. Their toggles are below.") + desc = "Displays the money per hour YOU get with YOUR crop/minute value when selling the item to bazaar. " + + "Supports Bountiful, Mushroom Cow Perk, Armor Crops and Dicer Drops. Their toggles are below.") @ConfigEditorBoolean @ConfigAccordionId(id = 13) @FeatureToggle @@ -958,6 +958,14 @@ public class GardenConfig { @ConfigAccordionId(id = 13) public boolean moneyPerHourMooshroom = true; + @Expose + @ConfigOption( + name = "Include Armor Drops", + desc = "Includes the average coins/hr from your armor.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 13) + public boolean moneyPerHourArmor = true; + @Expose @ConfigOption( name = "Include Dicer Drops", -- cgit