From 5f09ead4f6c3e14a269d9687e195ada59214ef4d Mon Sep 17 00:00:00 2001 From: jhqwqmc Date: Thu, 11 Dec 2025 17:03:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E7=A6=81=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common-files/src/main/resources/config.yml | 2 +- .../net/momirealms/craftengine/core/plugin/config/Config.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);