summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-08-07 19:36:45 +1000
committerGitHub <noreply@github.com>2023-08-07 11:36:45 +0200
commita80c1f64d839265caae279a4e200920b39ef3149 (patch)
tree19e0ca6512f3d135582cfa1f44d055bc2cbeaf7e /src/main/java/at/hannibal2/skyhanni/config
parent77d61f6fa5530f1a8fbb8f28ffac48a77017810b (diff)
downloadskyhanni-a80c1f64d839265caae279a4e200920b39ef3149.tar.gz
skyhanni-a80c1f64d839265caae279a4e200920b39ef3149.tar.bz2
skyhanni-a80c1f64d839265caae279a4e200920b39ef3149.zip
Merge pull request #350
Garden Money per Hour now uses the dicer drops from melon and pumpkins as well.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java26
1 files changed, 25 insertions, 1 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 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;
@@ -881,6 +881,30 @@ public class Garden {
@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",
desc = "Hides the first line of 'Money Per Hour' entirely.")
@ConfigEditorBoolean