aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-09 01:20:00 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-09 01:20:00 +0100
commit2f795bd9b4776c1777990e43436d139746bac0fb (patch)
tree4d8b259e5c420ff1c1592c633fdebb1eb9acca17 /src/main/java/at/hannibal2/skyhanni/config
parent17f3844717754ee70df5d17ea8fcd159edc36fbd (diff)
downloadskyhanni-2f795bd9b4776c1777990e43436d139746bac0fb.tar.gz
skyhanni-2f795bd9b4776c1777990e43436d139746bac0fb.tar.bz2
skyhanni-2f795bd9b4776c1777990e43436d139746bac0fb.zip
Show a chat message with the positive or negative progress in the community goal percentage after opening the bingo card inventory.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java
index ae382d25d..9150f06e4 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java
@@ -13,6 +13,7 @@ public class BingoCardConfig {
@ConfigEditorBoolean
@FeatureToggle
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
@@ -52,4 +53,10 @@ public class BingoCardConfig {
@ConfigOption(name = "Hide Difficulty When Done", desc = "Remove the background difficulty color in the bingo card inventory when the goal is done.")
@ConfigEditorBoolean
public boolean hideDoneDifficulty = true;
+
+ @Expose
+ @ConfigOption(name = "Community Goal Progress", desc = "Show a chat message with the positive or negative progress in the community goal percentage after opening the bingo card inventory.")
+ @ConfigEditorBoolean
+ @FeatureToggle
+ public boolean communityGoalProgress = true;
}