diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-12 15:57:01 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-10-12 15:57:01 +0200 |
commit | 7b5e92cf9b5b76e800cfb9b583c7f2fd56efbc35 (patch) | |
tree | c5d0960c3f16c8ac745e10aaa6929b0fdec643cf /src/main/java/at/hannibal2/skyhanni/config | |
parent | e75cfea30b646025db52c31f243f6435b833d5f5 (diff) | |
download | skyhanni-7b5e92cf9b5b76e800cfb9b583c7f2fd56efbc35.tar.gz skyhanni-7b5e92cf9b5b76e800cfb9b583c7f2fd56efbc35.tar.bz2 skyhanni-7b5e92cf9b5b76e800cfb9b583c7f2fd56efbc35.zip |
Option to show only the closest basket.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java | 5 |
1 files changed, 5 insertions, 0 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 0e3257043..ca532c36e 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/EventConfig.java @@ -365,6 +365,11 @@ public class EventConfig { @ConfigOption(name = "Helper Waypoints", desc = "Show helper waypoints to Baskets #23, #24, and #25. Coordinates by §bErymanthus§7.") @ConfigEditorBoolean public boolean allEntranceWaypoints = false; + + @Expose + @ConfigOption(name = "Only Closest", desc = "Only show the closest waypoint") + @ConfigEditorBoolean + public boolean onlyClosest = false; } } |