diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-12 17:03:52 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-12 17:03:52 +0200 |
commit | cba2c097f604b39bdef3522ea7018bea0b43af97 (patch) | |
tree | 364730474b90012544861063f892deb4b1021c26 /src/main/java/at | |
parent | 494043709d21e555f44164bd2e568dd1ca2d8233 (diff) | |
download | skyhanni-cba2c097f604b39bdef3522ea7018bea0b43af97.tar.gz skyhanni-cba2c097f604b39bdef3522ea7018bea0b43af97.tar.bz2 skyhanni-cba2c097f604b39bdef3522ea7018bea0b43af97.zip |
fixed default option and added feature toggle
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java | 3 |
1 files changed, 2 insertions, 1 deletions
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; } } |