From 88fb3dbf60d6c5c017fb9017ecefefed45a461bc Mon Sep 17 00:00:00 2001 From: zhayujie Date: Thu, 30 Nov 2023 11:51:04 +0800 Subject: [PATCH] fix: generate break by bug --- plugins/hello/hello.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/hello/hello.py b/plugins/hello/hello.py index 007df6d..a0004be 100644 --- a/plugins/hello/hello.py +++ b/plugins/hello/hello.py @@ -31,8 +31,6 @@ class Hello(Plugin): ContextType.PATPAT, ]: return - if not self.config or not self.config.get("use_character_desc"): - e_context["context"]["generate_breaked_by"] = EventAction.BREAK if e_context["context"].type == ContextType.JOIN_GROUP: if "group_welcome_msg" in conf(): reply = Reply() @@ -40,6 +38,8 @@ class Hello(Plugin): reply.content = conf().get("group_welcome_msg", "") e_context["reply"] = reply e_context.action = EventAction.BREAK_PASS # 事件结束,并跳过处理context的默认逻辑 + if not self.config or not self.config.get("use_character_desc"): + e_context["context"]["generate_breaked_by"] = EventAction.BREAK_PASS return e_context["context"].type = ContextType.TEXT msg: ChatMessage = e_context["context"]["msg"] @@ -52,6 +52,8 @@ class Hello(Plugin): msg: ChatMessage = e_context["context"]["msg"] e_context["context"].content = f"请你随机使用一种风格介绍你自己,并告诉用户输入#help可以查看帮助信息。" e_context.action = EventAction.BREAK # 事件结束,进入默认处理逻辑 + if not self.config or not self.config.get("use_character_desc"): + e_context["context"]["generate_breaked_by"] = EventAction.BREAK return content = e_context["context"].content