diff --git a/src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinServerStatus.java b/src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinServerStatus.java index 6324e221..e7efd266 100644 --- a/src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinServerStatus.java +++ b/src/main/java/com/aizistral/nochatreports/common/mixins/common/MixinServerStatus.java @@ -20,20 +20,6 @@ public class MixinServerStatus implements ServerDataExtension { private boolean preventsChatReports; - /** - * @reason Spoof the value of "enforcesSecureChat" in case conversion to system messages is enabled. - * There is no way for client to verify the value of the option in such case, so that's one less - * annoying warning. - * @author Aizistral - */ - - @Inject(method = "enforcesSecureChat", at = @At("HEAD"), cancellable = true) - public void onSecureChatCheck(CallbackInfoReturnable info) { - if (NCRConfig.getCommon().convertToGameMessage()) { - info.setReturnValue(true); - } - } - @Override public boolean preventsChatReports() { var self = (ServerStatus) (Object) this;