feat:noreply不考虑command

This commit is contained in:
SengokuCola
2025-07-15 21:37:32 +08:00
parent 22337ee2f4
commit a150aa7b2b
10 changed files with 33 additions and 10 deletions

View File

@@ -98,6 +98,7 @@ class ChatBot:
# 使用新的组件注册中心查找命令
command_result = component_registry.find_command_by_text(text)
if command_result:
message.is_command = True
command_class, matched_groups, intercept_message, plugin_name = command_result
# 获取插件配置

View File

@@ -107,6 +107,9 @@ class MessageRecv(Message):
self.is_picid = False
self.has_picid = False
self.is_mentioned = None
self.is_command = False
self.priority_mode = "interest"
self.priority_info = None
self.interest_value: float = None # type: ignore

View File

@@ -43,6 +43,7 @@ class MessageStorage:
priority_info = {}
is_emoji = False
is_picid = False
is_command = False
else:
filtered_display_message = ""
interest_value = message.interest_value
@@ -52,6 +53,7 @@ class MessageStorage:
priority_info = message.priority_info
is_emoji = message.is_emoji
is_picid = message.is_picid
is_command = message.is_command
chat_info_dict = chat_stream.to_dict()
user_info_dict = message.message_info.user_info.to_dict() # type: ignore
@@ -96,6 +98,7 @@ class MessageStorage:
priority_info=priority_info,
is_emoji=is_emoji,
is_picid=is_picid,
is_command=is_command,
)
except Exception:
logger.exception("存储消息失败")