aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-12-27 18:49:28 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-12-27 18:49:28 +0100
commitf9dad248e60cb7c34caf2cf82ba0ad0a59e07f5a (patch)
tree6b4da8fc9d46d2dabb61922900416d033e50fd08 /src/main/java/at/hannibal2/skyhanni/config
parent31df4b31ded78db6714e8b859b073ad4dce3c470 (diff)
downloadskyhanni-f9dad248e60cb7c34caf2cf82ba0ad0a59e07f5a.tar.gz
skyhanni-f9dad248e60cb7c34caf2cf82ba0ad0a59e07f5a.tar.bz2
skyhanni-f9dad248e60cb7c34caf2cf82ba0ad0a59e07f5a.zip
Add two more chat filter categories: Powder Mining and Winter Gifts
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Chat.java32
1 files changed, 28 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
index c7af12866..029731f96 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java
@@ -20,25 +20,49 @@ public class Chat {
@ConfigOption(name = "Hypixel Hub", desc = "Block messages outside SkyBlock in the Hypixel lobby: player joins, loot boxes, prototype lobby messages, radiating generosity and Hypixel tournaments.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean hypixelHub = false;
+ public boolean hypixelHub = true;
@Expose
@ConfigOption(name = "Empty", desc = "Hide all the empty messages from the chat.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean empty = false;
+ public boolean empty = true;
@Expose
@ConfigOption(name = "Warping", desc = "Block 'sending request to join ..' and 'warping ..' messages.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean warping = false;
+ public boolean warping = true;
@Expose
@ConfigOption(name = "Welcome", desc = "Hide the 'welcome to skyblock' message.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
- public boolean welcome = false;
+ public boolean welcome = true;
+
+ @Expose
+ @ConfigOption(name = "Guild Exp", desc = "Hide Guild Exp messages.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean guildExp = true;
+
+ @Expose
+ @ConfigOption(name = "Friend Join Left", desc = "Hide friend join/left messages.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean friendJoinLeft = false;
+
+ @Expose
+ @ConfigOption(name = "Winter Gifts", desc = "Hide useless winter gift messages.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean winterGift = true;
+
+ @Expose
+ @ConfigOption(name = "Powder Mining", desc = "Hide messages while opening chests in crystal hollows.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean powderMining = true;
//TODO remove
@Expose