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-12 03:41:40 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-03-12 03:41:40 +0100
commit900ab6bd801682f1fac237bf7702093aebac68ec (patch)
tree69bc4f0b07c0e6b6c2b2e9cdcb6dfeb6c9edf617 /src/main/java/at/hannibal2/skyhanni/config/features
parent0eebcf99ed0f2aa26bf62920a61eb50092d4f8cb (diff)
downloadskyhanni-900ab6bd801682f1fac237bf7702093aebac68ec.tar.gz
skyhanni-900ab6bd801682f1fac237bf7702093aebac68ec.tar.bz2
skyhanni-900ab6bd801682f1fac237bf7702093aebac68ec.zip
Adding farming weight provided by the elite skyblock farmers.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Garden.java19
1 files changed, 19 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 9230247ee..3de40bad0 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java
@@ -311,6 +311,25 @@ public class Garden {
public Position gardenLevelPos = new Position(-375, -215, false, true);
@Expose
+ @ConfigOption(name = "Elite Farming Weight", desc = "")
+ @ConfigEditorAccordion(id = 10)
+ public boolean eliteFarmingWeight = false;
+
+ @Expose
+ @ConfigOption(name = "Display", desc = "Display your farming weight on screen. " +
+ "The calculation and api is provided by The Elite SkyBlock Farmers. " +
+ "See §ehttps://elitebot.dev/info §7for more info.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 10)
+ public boolean eliteFarmingWeightDisplay = true;
+
+ @Expose
+ @ConfigOption(name = "Farming Weight Position", desc = "")
+ @ConfigEditorButton(runnableId = "eliteFarmingWeight", buttonText = "Edit")
+ @ConfigAccordionId(id = 10)
+ public Position eliteFarmingWeightPos = new Position(-370, -167, false, true);
+
+ @Expose
@ConfigOption(name = "Plot Price", desc = "Show the price of the plot in coins when inside the Configure Plots inventory.")
@ConfigEditorBoolean
public boolean plotPrice = true;