From 181efa069172eaccb2cd4eecac1a98b8d15a36ec Mon Sep 17 00:00:00 2001 From: Syaro <1215791340@qq.com> Date: Mon, 11 Jul 2022 20:50:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E5=85=B3=E9=97=AD=E4=B8=8E?= =?UTF-8?q?=E6=9C=BA=E5=99=A8=E4=BA=BA=E7=9A=84=E4=BA=92=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f11193f..f4f0ef7 100644 --- a/main.py +++ b/main.py @@ -1099,7 +1099,7 @@ async def bili_resolve(event: GroupMessage): @bot.on(GroupMessage) async def diyreply(event: GroupMessage): - if not settings['silence']: + if not settings['silence'] and settings['autoreply']: if event.group.id not in silencegroup: msg = "".join(map(str, event.message_chain[Plain])) m = re.match(fr"^{commandpre}{commands_map['reply']['jida']}", msg.strip())