diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-22 14:48:20 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-22 14:48:20 +0200 |
commit | 518510a89b60999422aefea1c6df38c2ef2f3269 (patch) | |
tree | fb75f12d3dba65ea844febe567651fc2985f742e /src/main | |
parent | 74b18c1f246855d2a70ece6e96b381345f721a85 (diff) | |
download | skyhanni-518510a89b60999422aefea1c6df38c2ef2f3269.tar.gz skyhanni-518510a89b60999422aefea1c6df38c2ef2f3269.tar.bz2 skyhanni-518510a89b60999422aefea1c6df38c2ef2f3269.zip |
add warning
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/chat/PlayerMessagesConfig.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/chat/PlayerMessagesConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/chat/PlayerMessagesConfig.java index 8e279b1e3..0be1826e2 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/chat/PlayerMessagesConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/chat/PlayerMessagesConfig.java @@ -13,10 +13,11 @@ import java.util.List; public class PlayerMessagesConfig { @Expose - @ConfigOption(name = "Enable Chat Formatting", desc = "Enable player chat modifications. Required for all settings below.") + @ConfigOption(name = "Enable Chat Formatting", desc = "Enable player chat modifications. Required for all settings below.\n" + + "§cThis might break hover/click on chat actions.") @ConfigEditorBoolean @FeatureToggle - public boolean enable = true; + public boolean enable = false; @Expose @ConfigOption( |