From cba2c097f604b39bdef3522ea7018bea0b43af97 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 12 Oct 2023 17:03:52 +0200 Subject: fixed default option and added feature toggle --- src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java index ca532c36e..7cd88e25e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java @@ -359,6 +359,7 @@ public class EventConfig { @Expose @ConfigOption(name = "Basket Waypoints", desc = "Show all Halloween Basket waypoints.\nShoutout to §bTobbbb §7for the coordinates.\n(AS OF 2023)") @ConfigEditorBoolean + @FeatureToggle public boolean allWaypoints = false; @Expose @@ -369,7 +370,7 @@ public class EventConfig { @Expose @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint") @ConfigEditorBoolean - public boolean onlyClosest = false; + public boolean onlyClosest = true; } } -- cgit