diff options
author | Erymanthus[#5074] | (u/)RayDeeUx <51521765+RayDeeUx@users.noreply.github.com> | 2023-10-12 09:35:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 15:35:08 +0200 |
commit | 78093386e000704e7aba3163467456d79b728629 (patch) | |
tree | 49f4fe0da7badff0825db0ce2c5f35a6ab5c74d3 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 49eff144941a98c1583934ab61eac3c79b9979f7 (diff) | |
download | skyhanni-78093386e000704e7aba3163467456d79b728629.tar.gz skyhanni-78093386e000704e7aba3163467456d79b728629.tar.bz2 skyhanni-78093386e000704e7aba3163467456d79b728629.zip |
Feature: Lobby halloween waypoints, per request of Tobbbb (#540)
Show waypoints for Baskets of the Halloween Event in the main lobby. #540
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java index db8f21131..ebeb2059d 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java @@ -799,6 +799,24 @@ public class MiscConfig { @FeatureToggle public boolean fixNeuHeavyPearls = true; + @Expose + @ConfigOption(name = "Main Lobby Halloween Basket Waypoints", desc = "") + @Accordion + public halloweenBasketConfig halloweenBasket = new halloweenBasketConfig(); + + public static class halloweenBasketConfig { + + @Expose + @ConfigOption(name = "Basket Waypoints", desc = "Show all Halloween Basket waypoints.\nShoutout to §bTobbbb §7for the coordinates.\n(AS OF 2023)") + @ConfigEditorBoolean + public boolean allWaypoints = false; + + @Expose + @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 = "Time In Limbo", |