diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-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 36d2fbb50..82a3c9516 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java @@ -984,13 +984,13 @@ public class GardenConfig { public Position farmingArmorDropsPos = new Position(16, -232, false, true); @Expose - @ConfigOption(name = "Anita Medal Profit", desc = "") + @ConfigOption(name = "Anita Shop", desc = "") @ConfigEditorAccordion(id = 16) public boolean anitaMedalProfit = false; @Expose @ConfigOption( - name = "Show Prices", + name = "Medal Prices", desc = "Helps to identify profitable items to buy at the Anita item shop " + "and potential profit from selling the item at the auction house." ) @@ -999,6 +999,14 @@ public class GardenConfig { public boolean anitaMedalProfitEnabled = true; @Expose + @ConfigOption( + name = "Extra Farming Fortune", + desc = "Show Amount of upgrades and cost to max out in the item tooltip.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 16) + public boolean extraFarmingFortune = true; + + @Expose public Position anitaMedalProfitPos = new Position(206, 158, false, true); @Expose |