From e78e440df6c071b2023c19ea311305e643378fb4 Mon Sep 17 00:00:00 2001 From: Mikecraft1224 <85994411+Mikecraft1224@users.noreply.github.com> Date: Sun, 26 May 2024 13:30:19 +0200 Subject: Feature + Fix: Added new chat filters, Fixed: Healer Orb Pickup (#1750) --- .../hannibal2/skyhanni/config/features/chat/FilterTypesConfig.java | 7 +++++++ .../skyhanni/config/features/dungeon/MessageFilterConfig.java | 6 ++++++ 2 files changed, 13 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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 9b1d7db80..76fb716da 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 @@ -99,6 +99,13 @@ public class FilterTypesConfig { @FeatureToggle public boolean factoryUpgrade = false; + @Expose + @ConfigOption(name = "Sacrifice", desc = "Hide sacrifice messages of other players.") + @ConfigEditorBoolean + @FeatureToggle + public boolean sacrifice = false; + + //TODO remove @Expose @ConfigOption(name = "Others", desc = "Hide other annoying messages.") diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/MessageFilterConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/MessageFilterConfig.java index 34fe05c52..0bb6d0b88 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/MessageFilterConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/dungeon/MessageFilterConfig.java @@ -6,6 +6,12 @@ import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean; import io.github.notenoughupdates.moulconfig.annotations.ConfigOption; public class MessageFilterConfig { + @Expose + @ConfigOption(name = "Rare Drops", desc = "Hides the chat message when other players get rare drops from chests.") + @ConfigEditorBoolean + @FeatureToggle + public boolean rareDrops = false; + @Expose @ConfigOption(name = "Keys and Doors", desc = "Hides the chat message when picking up keys or opening doors in Dungeons.") @ConfigEditorBoolean -- cgit