From b0b2d42b999ebf8ebb41ad48a54f52ce1315d1dd Mon Sep 17 00:00:00 2001 From: Luna Date: Sat, 7 Sep 2024 21:34:20 +0200 Subject: Improvement: Make pest middle waypoint optional (#2469) --- .../skyhanni/config/features/garden/pests/PestWaypointConfig.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestWaypointConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestWaypointConfig.java index 046255468..58ba18922 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestWaypointConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestWaypointConfig.java @@ -33,6 +33,14 @@ public class PestWaypointConfig { @ConfigEditorBoolean public boolean drawLine = true; + @Expose + @ConfigOption( + name = "Show Middle", + desc = "Also show a waypoint to the middle of a plot. This can help determine if the tracker is pointing to the middle instead of a pest." + ) + @ConfigEditorBoolean + public boolean showMiddle = false; + @Expose @ConfigOption( name = "Show For Seconds", -- cgit