From 79d891d5a3e1bffd31491a921757ccf7ab66b5fe Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sat, 31 Aug 2024 22:31:55 +0200 Subject: Feature: Bits on Cookie (#2265) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../skyhanni/config/features/misc/BitsConfig.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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 -- cgit