From 6ebbcf93ca41a403f9d75caad747452fcc628983 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 28 Aug 2023 21:54:24 +0200 Subject: Now the farming weight display is hidden per default when below 200 weight (can be disabled). --- .../java/at/hannibal2/skyhanni/config/features/GardenConfig.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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 5796e609a..9aeb8d1a8 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/GardenConfig.java @@ -781,6 +781,12 @@ public class GardenConfig { @ConfigAccordionId(id = 11) public String eliteFarmingWeightETAGoalRank = "10000"; + @Expose + @ConfigOption(name = "Show below 200", desc = "Show the farming weight data even if you are below 200 weight.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 11) + public boolean eliteFarmingWeightIgnoreLow = false; + @Expose @ConfigOption(name = "Dicer Counter", desc = "") @ConfigEditorAccordion(id = 12) -- cgit