diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-12 05:48:46 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-12 05:48:46 +0100 |
commit | 5fa745e48252f443c8ca199959ab0adecf368adc (patch) | |
tree | fb469bdf843e3fb4ca285a2cf69c07f8f15b138f /src/main/java/at/hannibal2/skyhanni/config | |
parent | 210ddb127a1aa4bbb80c07156e78af8d9c5e7d4e (diff) | |
download | skyhanni-5fa745e48252f443c8ca199959ab0adecf368adc.tar.gz skyhanni-5fa745e48252f443c8ca199959ab0adecf368adc.tar.bz2 skyhanni-5fa745e48252f443c8ca199959ab0adecf368adc.zip |
Added farming weight leaderboard support
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 7 |
1 files changed, 7 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 3de40bad0..f826ef313 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -330,6 +330,13 @@ public class Garden { public Position eliteFarmingWeightPos = new Position(-370, -167, false, true); @Expose + @ConfigOption(name = "Leaderboard Ranking", desc = "Show your position in the farming weight leaderboard. " + + "Only if your farming weight is high enough! Updates every 10 minutes.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 10) + public boolean eliteFarmingWeightLeaderboard = false; + + @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; |