diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-23 11:54:11 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-23 11:54:11 +0200 |
commit | 99ad5e33b9732b1e9bc4fc3cd9cd7637dbc494aa (patch) | |
tree | 6952489369b43f8138ad5f1d0029574744756e4b /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | ccc8cc8b112b48dd6b5d14db33690f4d86c91b9b (diff) | |
download | skyhanni-99ad5e33b9732b1e9bc4fc3cd9cd7637dbc494aa.tar.gz skyhanni-99ad5e33b9732b1e9bc4fc3cd9cd7637dbc494aa.tar.bz2 skyhanni-99ad5e33b9732b1e9bc4fc3cd9cd7637dbc494aa.zip |
Anita Extra Farming Fortune
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-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 |