diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-02 09:59:22 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-02 09:59:22 +0200 |
commit | 842a02b0c7a43a9157f220e5ca3f071f7c6be711 (patch) | |
tree | b980da1dc1e57b8a2ebab6680c191a0aaf1acb8e /src/main/java/at/hannibal2/skyhanni/config | |
parent | 34b6ac6b6f956c04ba565b109aa826880eef0661 (diff) | |
download | skyhanni-842a02b0c7a43a9157f220e5ca3f071f7c6be711.tar.gz skyhanni-842a02b0c7a43a9157f220e5ca3f071f7c6be711.tar.bz2 skyhanni-842a02b0c7a43a9157f220e5ca3f071f7c6be711.zip |
Added options to ignore the wizard and the crypt warp for diana.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DianaConfig.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DianaConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DianaConfig.java index d5d46a0b1..3321e76e6 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DianaConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DianaConfig.java @@ -35,6 +35,25 @@ public class DianaConfig { public int keyBindWarp = Keyboard.KEY_NONE; @Expose + @ConfigOption(name = "Ignored Warps", desc = "") + @Accordion + public IgnoredWarpsConfig ignoredWarps = new IgnoredWarpsConfig(); + + public static class IgnoredWarpsConfig { + + @Expose + @ConfigOption(name = "Crypt", desc = "Ignore the crypt warp point (Because it takes a long time to leave).") + @ConfigEditorBoolean + public boolean crypt = false; + + @Expose + @ConfigOption(name = "Wizard", desc = "Ignore the wizard tower warp point (Because it is easy to fall into the rift).") + @ConfigEditorBoolean + public boolean wizard = false; + + } + + @Expose @ConfigOption(name = "Inquisitor Waypoint Sharing", desc = "") @Accordion @ConfigAccordionId(id = 9) |