diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-08-26 21:05:20 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-08-26 21:05:20 +0200 |
| commit | 9cd969dc06ee91e2d93b6ef656bcc35e5b574c12 (patch) | |
| tree | 1e5f4dc18170060d204164373f2261b14f0f8e8d /src/main/java/at/hannibal2/skyhanni/config/features/Chat.java | |
| parent | f5971ea6e7d4fea8f442c92f5ece7812892e844d (diff) | |
| download | SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.tar.gz SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.tar.bz2 SkyHanni-9cd969dc06ee91e2d93b6ef656bcc35e5b574c12.zip | |
added summoning mob features
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/Chat.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Chat.java | 12 |
1 files changed, 6 insertions, 6 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 bdd7e8f0d..c7bfa2973 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java @@ -10,38 +10,38 @@ public class Chat { @Expose @ConfigOption(name = "Chat Filter Types", desc = "") - @ConfigEditorAccordion(id = 1) + @ConfigEditorAccordion(id = 0) public boolean filterTypes = false; @Expose @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 = 1) + @ConfigAccordionId(id = 0) public boolean hypixelHub = false; @Expose @ConfigOption(name = "Empty", desc = "Hide all the empty messages from the chat.") @ConfigEditorBoolean - @ConfigAccordionId(id = 1) + @ConfigAccordionId(id = 0) public boolean empty = false; @Expose @ConfigOption(name = "Warping", desc = "Block 'sending request to join ..' and 'warping ..' messages.") @ConfigEditorBoolean - @ConfigAccordionId(id = 1) + @ConfigAccordionId(id = 0) public boolean warping = false; @Expose @ConfigOption(name = "Welcome", desc = "Hide the 'welcome to skyblock' message.") @ConfigEditorBoolean - @ConfigAccordionId(id = 1) + @ConfigAccordionId(id = 0) public boolean welcome = false; //TODO remove @Expose @ConfigOption(name = "Others", desc = "Hide other annoying messages.") @ConfigEditorBoolean - @ConfigAccordionId(id = 1) + @ConfigAccordionId(id = 0) public boolean others = false; @Expose |
