From d4849832a18df62a34e64d2ecca7650ec91c9d40 Mon Sep 17 00:00:00 2001 From: Jerrypluay Date: Wed, 12 Nov 2025 13:48:16 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=88=A0=E9=99=A4=E5=8D=88?= =?UTF-8?q?=E5=AE=89=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/zwa.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/apps/zwa.js b/apps/zwa.js index 158a7f2..835a24f 100644 --- a/apps/zwa.js +++ b/apps/zwa.js @@ -32,10 +32,6 @@ export class ZWA extends plugin { reg: '^(#|/)?晚上好$|^(#|/)?安$|^(#|/)?晚安$|^(#|/)?睡了$|^(#|/)?睡觉$|^(#|/)?睡咯$', fnc: 'www', }, - { - reg: '^(#|/)?午安$|^(#|/)?中午好$', - fnc: 'wuan', - }, { reg: '^(#|/)?早$|^(#|/)?早安$|^(#|/)?起床(了)$|^(#|/)?早上好$|^(#|/)?早上好!$|^(#|/)?早!$|^(#|/)?早啊$', fnc: 'zzz', @@ -157,18 +153,4 @@ export class ZWA extends plugin { }); } } - async wuan(e) { - if (!ConfigControl.get()?.config?.zwa) { - return; - } - if (e.isMaster) { - setTimeout(async () => { - e.reply(['主人中午好好休息哦', segment.image(wa)], true); - }); - } else { - setTimeout(async () => { - e.reply(['睡个好觉噢', segment.image(wa)], true); - }); - } - } }