diff options
| author | Mikecraft1224 <85994411+Mikecraft1224@users.noreply.github.com> | 2024-05-26 13:30:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-26 13:30:19 +0200 |
| commit | e78e440df6c071b2023c19ea311305e643378fb4 (patch) | |
| tree | 5d532c49adb78bf165a64434ece1ae714dc580a8 /src/main/java/at/hannibal2/skyhanni/config/features | |
| parent | 80c414d629cba4029198dbafb23941109ad9511b (diff) | |
| download | skyhanni-e78e440df6c071b2023c19ea311305e643378fb4.tar.gz skyhanni-e78e440df6c071b2023c19ea311305e643378fb4.tar.bz2 skyhanni-e78e440df6c071b2023c19ea311305e643378fb4.zip | |
Feature + Fix: Added new chat filters, Fixed: Healer Orb Pickup (#1750)
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 | 7 | ||||
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/dungeon/MessageFilterConfig.java | 6 |
2 files changed, 13 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 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 @@ -7,6 +7,12 @@ 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 @FeatureToggle |
