diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-01 10:57:30 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-01 10:57:30 +0100 |
commit | 9f2118dfc218a6b97e4d7d67e7fb9dbd7431cf54 (patch) | |
tree | b993166eb2fdff1928e6cfe8b26072be00554626 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 18735f84f7ecdfc38c5d01f2f8a210e2a1613779 (diff) | |
download | skyhanni-9f2118dfc218a6b97e4d7d67e7fb9dbd7431cf54.tar.gz skyhanni-9f2118dfc218a6b97e4d7d67e7fb9dbd7431cf54.tar.bz2 skyhanni-9f2118dfc218a6b97e4d7d67e7fb9dbd7431cf54.zip |
Hide the repeating fire sale reminder chat messages.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java index 42cca5b59..f37e66705 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java @@ -74,6 +74,12 @@ public class FilterTypesConfig { @FeatureToggle public boolean profileJoin = true; + @Expose + @ConfigOption(name = "Fire Sale", desc = "Hide the repeating fire sale reminder chat messages.") + @ConfigEditorBoolean + @FeatureToggle + public boolean fireSale = true; + //TODO remove @Expose @ConfigOption(name = "Others", desc = "Hide other annoying messages.") |