diff options
| author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-09-27 19:48:40 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-27 11:48:40 +0200 |
| commit | 26031387bb9408e20ad9aaf375300a400119e03c (patch) | |
| tree | c70a306a5e7be746530edf9795628c49200dbd5b /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | 9d19d31b90abc55fd6eb538c73b6a3378f092710 (diff) | |
| download | skyhanni-26031387bb9408e20ad9aaf375300a400119e03c.tar.gz skyhanni-26031387bb9408e20ad9aaf375300a400119e03c.tar.bz2 skyhanni-26031387bb9408e20ad9aaf375300a400119e03c.zip | |
Feature: Armor drops to $/hr (#427)
Added Armor Drops to Money per Hour display. #427
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java | 12 |
1 files changed, 10 insertions, 2 deletions
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 @@ -960,6 +960,14 @@ public class GardenConfig { @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", desc = "Includes the average coins/hr from your melon or pumpkin dicer.") @ConfigEditorBoolean |
