From 2a564caafd598d617bfe5753e4a4faffab14f66c Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 23 Sep 2018 03:36:09 +0200 Subject: [PATCH] Work with capital letter --- commands/fun/emotesay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/fun/emotesay.js b/commands/fun/emotesay.js index d96ab517..7a0051d9 100644 --- a/commands/fun/emotesay.js +++ b/commands/fun/emotesay.js @@ -18,7 +18,7 @@ module.exports = class emoteSayCommand extends Command { } async run(message, { text }) { - let textChar = text.split('') + let textChar = text.toLowerCase().split('') let i = text.length; let emojiArray = []; message.delete();