aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-02 09:56:10 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-08-02 09:56:10 +0200
commit2d7b3849f8a5476080f90e6c1697023166793907 (patch)
tree29fbaf4771dcdc60d5f1086e462531a937624e5e /src/main/java/at/hannibal2/skyhanni/config/features
parentc8f83a06c0bb6fbc8a9eccc43733799d6e59b133 (diff)
downloadskyhanni-2d7b3849f8a5476080f90e6c1697023166793907.tar.gz
skyhanni-2d7b3849f8a5476080f90e6c1697023166793907.tar.bz2
skyhanni-2d7b3849f8a5476080f90e6c1697023166793907.zip
Added option to disable qucik toggle behaviour and added /shbingotoggle and
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java b/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java
index b9270b03c..f777fc903 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Bingo.java
@@ -16,9 +16,13 @@ public class Bingo {
public static class BingoCard {
@Expose
- @ConfigOption(name = "Enable", desc = "Displays the bingo card. Toggle by sneaking with SkyBlock menu in hand.")
+ @ConfigOption(name = "Enable", desc = "Displays the bingo card.")
@ConfigEditorBoolean
public boolean enabled = true;
+ @Expose
+ @ConfigOption(name = "Quick Toggle", desc = "Quickly toggle the bingo card or the step helper by sneaking with SkyBlock menu in hand.")
+ @ConfigEditorBoolean
+ public boolean quickToggle = true;
@Expose
@ConfigOption(name = "Bingo Steps", desc = "Show help with the next step in bingo instead of the bingo card. " +