diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-02 19:12:35 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-02 19:12:35 +0100 |
commit | 03fadd15879bf262777536edc1e5110252115339 (patch) | |
tree | 7a80c5565482d25824d65e9790dd16769e0d301d /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | e7b2ef2728d2fc04eef1e5872a7723d63a7c85bd (diff) | |
download | skyhanni-03fadd15879bf262777536edc1e5110252115339.tar.gz skyhanni-03fadd15879bf262777536edc1e5110252115339.tar.bz2 skyhanni-03fadd15879bf262777536edc1e5110252115339.zip |
Added option to only show tier 1 Minion Crafts in the Helper display when their items needed are fully collected.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoConfig.java index 816f8a194..24fdf9732 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoConfig.java @@ -26,5 +26,11 @@ public class BingoConfig { public boolean minionCraftHelperEnabled = true; @Expose + @ConfigOption(name = "Show Progress to T1", desc = "Show tier 1 Minion Crafts in the Helper display even if needed items are not fully collected.") + @ConfigEditorBoolean + @FeatureToggle + public boolean minionCraftHelperProgressFirst = false; + + @Expose public Position minionCraftHelperPos = new Position(10, 10, false, true); } |