aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-17 02:11:45 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-17 02:11:45 +0100
commit6536f1307c232ad57f96e83f4371a47d6b3fff89 (patch)
treec490c1aa4797df501a26485aabf820e8dc4debfa /src/main/java/at/hannibal2/skyhanni/config
parent0454b6420983dc37ff6c333adde1ce4aa6c36824 (diff)
downloadskyhanni-6536f1307c232ad57f96e83f4371a47d6b3fff89.tar.gz
skyhanni-6536f1307c232ad57f96e83f4371a47d6b3fff89.tar.bz2
skyhanni-6536f1307c232ad57f96e83f4371a47d6b3fff89.zip
Garden: Crop Milestone + Crop Upgrades
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java17
1 files changed, 17 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 d5344900b..139567c97 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -51,4 +51,21 @@ public class Garden {
@ConfigEditorBoolean
@ConfigAccordionId(id = 1)
public boolean visitorHelperShowPrice = true;
+
+ @Expose
+ @ConfigOption(name = "Numbers", desc = "")
+ @ConfigEditorAccordion(id = 2)
+ public boolean numbers = false;
+
+ @Expose
+ @ConfigOption(name = "Crop Milestone", desc = "Show the number of the crop milestone in the inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean cropMilestoneNumber = true;
+
+ @Expose
+ @ConfigOption(name = "Crop Upgrades", desc = "Show the number of upgrades in the crop upgrades inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 2)
+ public boolean cropUpgradesNumber = true;
}