diff options
Diffstat (limited to 'ATRI/plugins/funny.py')
-rw-r--r-- | ATRI/plugins/funny.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/ATRI/plugins/funny.py b/ATRI/plugins/funny.py index 6a50b7f..3d7becd 100644 --- a/ATRI/plugins/funny.py +++ b/ATRI/plugins/funny.py @@ -129,7 +129,6 @@ async def _fake_msg(bot: Bot, event: GroupMessageEvent) -> None: if check: for i in msg: args = i.split('*') - print(args) qq = args[0] name = args[1].replace('[', '[') name = name.replace(']', ']') @@ -145,3 +144,13 @@ async def _fake_msg(bot: Bot, event: GroupMessageEvent) -> None: } node.append(dic) await bot.send_group_forward_msg(group_id=group, messages=node) + + +__doc__ = """ +不知道吃什么? +权限组:所有人 +用法: + 今天{时段}吃什么 +示例: + 今天中午吃什么 +""" |