From db1dc596d7e917eace1050f291eb62c01b3fed33 Mon Sep 17 00:00:00 2001 From: minecraft1024a Date: Sat, 11 Oct 2025 20:32:17 +0800 Subject: [PATCH] =?UTF-8?q?refactor(napcat):=20=E9=87=8D=E5=91=BD=E5=90=8D?= =?UTF-8?q?=20MaiBot=20=E4=B8=BA=20MoFox-Bot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将日志和注释中的 "MaiBot" 实例更新为新的项目名称 "MoFox-Bot",以保持品牌一致性。 --- .../built_in/napcat_adapter_plugin/src/mmc_com_layer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/built_in/napcat_adapter_plugin/src/mmc_com_layer.py b/src/plugins/built_in/napcat_adapter_plugin/src/mmc_com_layer.py index 95d6dc567..8c99a9e44 100644 --- a/src/plugins/built_in/napcat_adapter_plugin/src/mmc_com_layer.py +++ b/src/plugins/built_in/napcat_adapter_plugin/src/mmc_com_layer.py @@ -18,7 +18,7 @@ def create_router(plugin_config: dict): server = get_global_server() host = server.host port = server.port - logger.debug(f"初始化MaiBot连接,使用地址:{host}:{port}") + logger.debug(f"初始化MoFox-Bot连接,使用地址:{host}:{port}") route_config = RouteConfig( route_config={ platform_name: TargetConfig( @@ -33,7 +33,7 @@ def create_router(plugin_config: dict): async def mmc_start_com(plugin_config: dict | None = None): """启动MaiBot连接""" - logger.debug("正在连接MaiBot") + logger.debug("正在连接MoFox-Bot") if plugin_config: create_router(plugin_config)