diff options
Diffstat (limited to 'ATRI/plugins/help')
-rw-r--r-- | ATRI/plugins/help/__init__.py | 4 | ||||
-rw-r--r-- | ATRI/plugins/help/data_source.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ATRI/plugins/help/__init__.py b/ATRI/plugins/help/__init__.py index c50d7f2..7008d86 100644 --- a/ATRI/plugins/help/__init__.py +++ b/ATRI/plugins/help/__init__.py @@ -37,8 +37,8 @@ service_info = Helper().on_command("帮助", "获取服务详细帮助", aliases @service_info.handle() async def _ready_service_info(event: MessageEvent): msg = str(event.get_message()).split(" ") - - service = msg[1] + + service = msg[0] try: cmd = msg[2] except BaseException: diff --git a/ATRI/plugins/help/data_source.py b/ATRI/plugins/help/data_source.py index cfa0c62..548924e 100644 --- a/ATRI/plugins/help/data_source.py +++ b/ATRI/plugins/help/data_source.py @@ -11,7 +11,7 @@ SERVICE_INFO_FORMAT = """ 说明:{docs} 可用命令:\n {cmd_list} 是否全局启用:{enabled} -Tip: 帮助 [服务] [命令] 以查看对应命令详细信息 +Tip: @bot 帮助 [服务] [命令] 以查看对应命令详细信息 """.strip() |