aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-31 20:08:47 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-31 20:08:47 +0200
commit58eccf5c7bf37c6279e15cd9e107b1fafd6e4509 (patch)
treeef98c7cfcc0ef2032a635393eda2a3c0a39a87be /src/main/java/at/hannibal2/skyhanni/config/features
parent33c7a5c0a13e98af7895aeb7eaf3109a3c841a5f (diff)
downloadskyhanni-58eccf5c7bf37c6279e15cd9e107b1fafd6e4509.tar.gz
skyhanni-58eccf5c7bf37c6279e15cd9e107b1fafd6e4509.tar.bz2
skyhanni-58eccf5c7bf37c6279e15cd9e107b1fafd6e4509.zip
Added Composter Upgrade Price - Show the price for the composter upgrade in the lore
Added Highlight Upgrade - Highlight Upgrades that can be bought right now. Added Number Composter Upgrades - Show the number of upgrades in the composter upgrades inventory.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java24
1 files changed, 24 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 1a46c3785..f6879a86d 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -164,6 +164,12 @@ public class Garden {
public boolean numberCropUpgrades = true;
@Expose
+ @ConfigOption(name = "Composter Upgrades", desc = "Show the number of upgrades in the composter upgrades inventory.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 5)
+ public boolean numberComposterUpgrades = true;
+
+ @Expose
@ConfigOption(name = "Crop Milestones", desc = "")
@ConfigEditorAccordion(id = 6)
public boolean cropMilestones = false;
@@ -686,6 +692,24 @@ public class Garden {
public boolean composterDisplayEnabled = true;
@Expose
+ @ConfigOption(
+ name = "Upgrade Price",
+ desc = "Show the price for the composter upgrade in the lore."
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 17)
+ public boolean composterUpgradePrice = true;
+
+ @Expose
+ @ConfigOption(
+ name = "Highlight Upgrade",
+ desc = "Highlight Upgrades that can be bought right now."
+ )
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 17)
+ public boolean composterHighLightUpgrade = true;
+
+ @Expose
public Position composterDisplayPos = new Position(-363, 13, false, true);
@Expose