diff options
author | Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> | 2024-08-31 22:31:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-31 22:31:55 +0200 |
commit | 79d891d5a3e1bffd31491a921757ccf7ab66b5fe (patch) | |
tree | f6fd36060dd3764ecf81295f77a0aecf68e82364 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | c834fbbb6a535b0c0c27d02c893433e687332268 (diff) | |
download | skyhanni-79d891d5a3e1bffd31491a921757ccf7ab66b5fe.tar.gz skyhanni-79d891d5a3e1bffd31491a921757ccf7ab66b5fe.tar.bz2 skyhanni-79d891d5a3e1bffd31491a921757ccf7ab66b5fe.zip |
Feature: Bits on Cookie (#2265)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/misc/BitsConfig.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/misc/BitsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/misc/BitsConfig.java index 9b3cc32e8..7179a2aab 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/misc/BitsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/misc/BitsConfig.java @@ -7,6 +7,25 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorSlider; import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class BitsConfig { + + @Expose + @ConfigOption(name = "Bulk Buy Cookie Time", desc = "Corrects the time for cookies if bought in bulk on the buy item.") + @ConfigEditorBoolean + @FeatureToggle + public boolean bulkBuyCookieTime = true; + + @Expose + @ConfigOption(name = "Bits on Cookie", desc = "Show the bits you would gain on a cookies.") + @ConfigEditorBoolean + @FeatureToggle + public boolean showBitsOnCookie = true; + + @Expose + @ConfigOption(name = "Bits on Cookie Change", desc = "Show the change in available bits on cookies.") + @ConfigEditorBoolean + @FeatureToggle + public boolean showBitsChangeOnCookie = false; + @Expose @ConfigOption(name = "Enable No Bits Warning", desc = "Alerts you when you have no bits available.") @ConfigEditorBoolean |