diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-27 22:48:46 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-27 22:48:46 +0100 |
commit | 0bc653bf143ba9e0f8e645d8a23a4801d814fc55 (patch) | |
tree | 5a8544425c1903f1d8014e23ee1e155b0edd75d9 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 639c14d765e33a5afc73a500e21490886632137c (diff) | |
download | skyhanni-0bc653bf143ba9e0f8e645d8a23a4801d814fc55.tar.gz skyhanni-0bc653bf143ba9e0f8e645d8a23a4801d814fc55.tar.bz2 skyhanni-0bc653bf143ba9e0f8e645d8a23a4801d814fc55.zip |
Mark the plots with pests on them in the world.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/garden/pests/PestFinderConfig.java | 11 |
1 files changed, 10 insertions, 1 deletions
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 @@ -19,8 +19,17 @@ public class PestFinderConfig { @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; |