From f5dd7e8cb67104cc4cf3e5624a3a34f72ee79c78 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8E=AB=E6=80=9D=E6=95=9B?=
 <55676105+shudorcl@users.noreply.github.com>
Date: Wed, 5 May 2021 13:42:06 +0800
Subject: =?UTF-8?q?=E6=AD=A3=E5=88=99=E4=BF=AE=E5=A4=8D=20-=20=E4=BF=AE?=
 =?UTF-8?q?=E5=A4=8D=E4=BA=86=E5=A4=A7=E5=90=8E=E5=A4=A9=E6=97=A0=E6=B3=95?=
 =?UTF-8?q?=E5=8C=B9=E9=85=8D=E5=88=B0=E7=9A=84=E9=97=AE=E9=A2=98=20-=20?=
 =?UTF-8?q?=E5=8F=AF=E8=83=BD=E4=BF=AE=E5=A4=8D=E4=BA=86=E6=97=B6=E9=97=B4?=
 =?UTF-8?q?=E7=82=B9=E6=97=A0=E6=B3=95=E5=8C=B9=E9=85=8D=E5=88=B0=E7=9A=84?=
 =?UTF-8?q?=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 ATRI/plugins/funny.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

(limited to 'ATRI/plugins/funny.py')

diff --git a/ATRI/plugins/funny.py b/ATRI/plugins/funny.py
index 11e6f39..a2092e3 100644
--- a/ATRI/plugins/funny.py
+++ b/ATRI/plugins/funny.py
@@ -94,11 +94,12 @@ eat_wat = sv.on_regex(r"[今|明|后|大后]天(.*?)吃什么", rule=is_in_servi
 
 @eat_wat.handle()
 async def _eat(bot: Bot, event: MessageEvent) -> None:
-    msg = str(event.message).strip()
+    msg = str(event.raw_message).strip()
+    msg = re.search(r"大?[今|明|后]天(.*?)吃什么", msg).group()
     user = event.user_id
     user_n = event.sender.nickname
-    arg = re.findall(r"(今|明|后|大后)天(.*?)吃什么", msg)[0]
-    nd = re.match(r"(今|明|后|大后)天", msg)[0]
+    arg = re.findall(r"大?[今|明|后]天(.*?)吃什么", msg)[0]
+    nd = re.match(r"大?[今|明|后]天", msg)[0]
 
     if arg == "中午":
         a = f"LdS4K6/{randint(0, 999999)}"
-- 
cgit v1.2.3