From 0bc653bf143ba9e0f8e645d8a23a4801d814fc55 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 27 Nov 2023 22:48:46 +0100 Subject: Mark the plots with pests on them in the world. --- .../config/features/garden/pests/PestFinderConfig.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java index 444da848d..e527a5933 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java @@ -17,10 +17,19 @@ public class PestFinderConfig { @FeatureToggle public boolean showDisplay = true; + @Expose + @ConfigOption( + name = "Waypoint In World", + desc = "Mark the plots with pests on them in the world." + ) + @ConfigEditorBoolean + @FeatureToggle + public boolean waypointInWorld = true; + @Expose @ConfigOption( name = "Only With Vacuum", - desc = "Only show the pest display while holding a vacuum in the hand." + desc = "Only show the pest display and waypoints while holding a vacuum in the hand." ) @ConfigEditorBoolean public boolean onlyWithVacuum = true; -- cgit