From 58eccf5c7bf37c6279e15cd9e107b1fafd6e4509 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 31 Mar 2023 20:08:47 +0200 Subject: 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. --- .../hannibal2/skyhanni/config/features/Garden.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 @@ -163,6 +163,12 @@ public class Garden { @ConfigAccordionId(id = 5) 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) @@ -685,6 +691,24 @@ public class Garden { @ConfigAccordionId(id = 17) 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); -- cgit