diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-05-13 19:13:33 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-05-13 19:13:33 +0200 |
commit | 88cfee3dec999c1bb881234272dd4a226e03b85c (patch) | |
tree | e6f72cfb8747fff6e46860948d8566f09667ca00 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 573c7b35ecb33e53ecc63492ce0f52eb5e6a99df (diff) | |
download | skyhanni-88cfee3dec999c1bb881234272dd4a226e03b85c.tar.gz skyhanni-88cfee3dec999c1bb881234272dd4a226e03b85c.tar.bz2 skyhanni-88cfee3dec999c1bb881234272dd4a226e03b85c.zip |
made mining events default disabled
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateUpgradeWarningsConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateUpgradeWarningsConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateUpgradeWarningsConfig.java index f77e52864..7e11ce6f9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateUpgradeWarningsConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/inventory/chocolatefactory/ChocolateUpgradeWarningsConfig.java @@ -11,7 +11,7 @@ public class ChocolateUpgradeWarningsConfig { @ConfigOption(name = "Upgrade Warning", desc = "Chat notification when you have a chocolate factory upgrade available to purchase.") @ConfigEditorBoolean @FeatureToggle - public boolean upgradeWarning = true; + public boolean upgradeWarning = false; @Expose @ConfigOption(name = "Upgrade Warning Sound", desc = "Also plays a sound when an upgrade is available. " + |