From 4c03b77a9a1a6ce2863594880720a311e0cdd824 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 13 Aug 2018 18:28:45 +0900 Subject: [PATCH] Fix bug --- src/modules/keyword/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/keyword/index.ts b/src/modules/keyword/index.ts index e203cd1..fe94a96 100644 --- a/src/modules/keyword/index.ts +++ b/src/modules/keyword/index.ts @@ -59,7 +59,7 @@ export default class KeywordModule implements IModule { public onMention = (msg: MessageLike) => { if (msg.user.isAdmin && msg.isMessage && msg.text && msg.text.includes('なんか皆に言って')) { - this.say(msg); + this.say(); return true; } else if (msg.text && msg.text.includes('なんか言って')) { this.say(msg);