diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-01 10:46:15 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-01 10:46:15 +0100 |
commit | 7fe3bd2bafad3b50e425020774c538dbb9e13fc1 (patch) | |
tree | 93e3b1c80e577337d7b1e231ac241f147a97cab6 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 94292e6cca304546c893d43fc2ee7b066fc9d651 (diff) | |
download | skyhanni-7fe3bd2bafad3b50e425020774c538dbb9e13fc1.tar.gz skyhanni-7fe3bd2bafad3b50e425020774c538dbb9e13fc1.tar.bz2 skyhanni-7fe3bd2bafad3b50e425020774c538dbb9e13fc1.zip |
Hide hidden bingo tips in display. Show the duration until the next hidden personal goal gets a tip revealed.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/event/bingo/BingoCardConfig.java | 5 |
1 files changed, 5 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 44dd23ec4..2bc7e1f8f 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 @@ -42,4 +42,9 @@ public class BingoCardConfig { @Expose public Position bingoCardPos = new Position(10, 10, false, true); + + @Expose + @ConfigOption(name = "Next Tip Duration", desc = "Show the duration until the next hidden personal goal gets a tip revealed.") + @ConfigEditorBoolean + public Property<Boolean> nextTipDuration = Property.of(true); } |