diff options
Diffstat (limited to 'ATRI/plugins')
-rw-r--r-- | ATRI/plugins/help.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ATRI/plugins/help.py b/ATRI/plugins/help.py index 8744262..5b0d1b0 100644 --- a/ATRI/plugins/help.py +++ b/ATRI/plugins/help.py @@ -30,7 +30,7 @@ help = sv.on_command( @help.handle() async def _help(bot: Bot, event: MessageEvent) -> None: msg = str(event.message).split(' ') - if not msg: + if not msg[0]: msg = ( "呀?找不到路了?\n" "/h list 查看可用命令列表\n" |