From 95b5e5e7023f4d71fbf876d8b24224b28727765b Mon Sep 17 00:00:00 2001 From: tetsuya-ki <64536338+tetsuya-ki@users.noreply.github.com> Date: Mon, 16 Sep 2024 16:27:33 +0900 Subject: [PATCH] =?UTF-8?q?aichat=E3=81=AE=E6=96=87=E5=AD=97=E5=88=97?= =?UTF-8?q?=E7=BD=AE=E6=8F=9B=E3=82=92=E6=AD=A3=E8=A6=8F=E8=A1=A8=E7=8F=BE?= =?UTF-8?q?=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/aichat/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/modules/aichat/index.ts b/src/modules/aichat/index.ts index 3ba07fc..861e5b7 100644 --- a/src/modules/aichat/index.ts +++ b/src/modules/aichat/index.ts @@ -174,10 +174,11 @@ export default class extends Module { } else if (msg.includes([kigo + 'plamo'])) { type = 'plamo'; } + const reName = RegExp(this.name, "i"); + const reKigoType = RegExp(kigo + type, "i"); const question = msg.extractedText - .toLowerCase() - .replace(this.name, '') - .replace(kigo + type, '') + .replace(reName, '') + .replace(reKigoType, '') .trim(); let text:string, aiChat:AiChat;