diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-23 01:07:42 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-23 01:07:42 +0200 |
commit | 1d2378ae415026dad4e09aecf6f37edb0d7c711e (patch) | |
tree | 6d71f7512a80856de447b4d807ba87149f47ddbe /src/main | |
parent | 4446f4b471911cd99fffb2d6659e93adbec00492 (diff) | |
download | skyhanni-1d2378ae415026dad4e09aecf6f37edb0d7c711e.tar.gz skyhanni-1d2378ae415026dad4e09aecf6f37edb0d7c711e.tar.bz2 skyhanni-1d2378ae415026dad4e09aecf6f37edb0d7c711e.zip |
Set some feature to default disabled
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Chat.java | 4 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 2 |
2 files changed, 3 insertions, 3 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 9e63789f3..cff44e7cc 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Chat.java @@ -56,7 +56,7 @@ public class Chat { @ConfigOption(name = "Winter Gifts", desc = "Hide useless winter gift messages.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) - public boolean winterGift = true; + public boolean winterGift = false; @Expose @ConfigOption(name = "Powder Mining", desc = "Hide messages while opening chests in crystal hollows. " + @@ -93,7 +93,7 @@ public class Chat { @ConfigOption(name = "Player Rank Hider", desc = "Hide player ranks in all chat messages.") @ConfigEditorBoolean @ConfigAccordionId(id = 1) - public boolean playerRankHider = true; + public boolean playerRankHider = false; @Expose @ConfigOption(name = "Chat Filter", desc = "Scan messages sent by players for blacklisted words and grey out the message if any are found.") diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index affdf9375..07e97edaf 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -211,7 +211,7 @@ public class Garden { "Useful for switching to a different pet for leveling.") @ConfigEditorBoolean @ConfigAccordionId(id = 6) - public boolean cropMilestoneWarnClose = true; + public boolean cropMilestoneWarnClose = false; @Expose @ConfigOption( |