diff --git a/common-files/src/main/resources/config.yml b/common-files/src/main/resources/config.yml index 782c308c6..cf2a9d749 100644 --- a/common-files/src/main/resources/config.yml +++ b/common-files/src/main/resources/config.yml @@ -402,7 +402,7 @@ image: # In most cases, you can improve load handling by increasing the number of Netty threads. network: # Requires a restart to apply. - disable-chat-report: true + disable-chat-report: false # Disable network operations related to items. # This option will disable client-bound-data/material and the functionality of replacing tags in item name and lore. disable-item-operations: false diff --git a/core/src/main/java/net/momirealms/craftengine/core/plugin/config/Config.java b/core/src/main/java/net/momirealms/craftengine/core/plugin/config/Config.java index 616990a13..d3dc4e300 100644 --- a/core/src/main/java/net/momirealms/craftengine/core/plugin/config/Config.java +++ b/core/src/main/java/net/momirealms/craftengine/core/plugin/config/Config.java @@ -560,7 +560,7 @@ public class Config { } if (firstTime) { - network$disable_chat_report = config.getBoolean("network.disable-chat-report", true); + network$disable_chat_report = config.getBoolean("network.disable-chat-report", false); } network$disable_item_operations = config.getBoolean("network.disable-item-operations", false); network$intercept_packets$system_chat = config.getBoolean("network.intercept-packets.system-chat", true);