Merge pull request #150 from DancingSnow0517/nonebot2

在写开黑啦版本时的小派蒙,发现了个小虫
This commit is contained in:
惜月 2022-07-30 05:42:30 -05:00 committed by GitHub
commit 6bd3013533
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -279,7 +279,7 @@ async def myzj_handler(event: MessageEvent, msg: Message = CommandArg()):
elif month_now == 2:
month_list = ['12', '1', '2']
else:
month_list = [str(month_now - 2), str(month_now - 1)]
month_list = [str(month_now - 2), str(month_now - 1), str(month_now)]
find_month = '(?P<month>' + '|'.join(month_list) + ')'
match = re.search(find_month, msg)
month = match.group('month') if match else month_now