From 18e8b4cca9737195f3a604b00a872d90ff008c71 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Nov 2018 08:03:45 +0900 Subject: [PATCH] Update index.ts --- src/modules/emoji/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/emoji/index.ts b/src/modules/emoji/index.ts index a10e781..e3903e7 100644 --- a/src/modules/emoji/index.ts +++ b/src/modules/emoji/index.ts @@ -132,7 +132,7 @@ export default class EmojiModule implements IModule { public install = (ai: 藍) => { } public onMention = (msg: MessageLike) => { - if (msg.includes(['絵文字', 'emoji', '福笑い'])) { + if (msg.includes(['顔文字', '絵文字', 'emoji', '福笑い'])) { const hand = hands[Math.floor(Math.random() * hands.length)]; const face = faces[Math.floor(Math.random() * faces.length)]; const emoji = Array.isArray(hand) ? hand[0] + face + hand[1] : hand + face + hand;