feat: optimize args in help text

This commit is contained in:
lanvent
2023-04-06 01:28:59 +08:00
parent 020f9a8d98
commit d3758968d0
5 changed files with 10 additions and 7 deletions

View File

@@ -26,7 +26,7 @@ class Finish(Plugin):
if content.startswith(trigger_prefix):
reply = Reply()
reply.type = ReplyType.ERROR
reply.content = "未知插件命令\n查看插件命令列表请输入#help {插件名}\n"
reply.content = "未知插件命令\n查看插件命令列表请输入#help 插件名\n"
e_context['reply'] = reply
e_context.action = EventAction.BREAK_PASS # 事件结束并跳过处理context的默认逻辑