diff --git a/commands/fun/emotesay.js b/commands/fun/emotesay.js index f06cbff..c6ef4d2 100644 --- a/commands/fun/emotesay.js +++ b/commands/fun/emotesay.js @@ -22,7 +22,7 @@ module.exports = class emoteSayCommand extends Command { text.toLowerCase().split('') let emojiArray = []; for (let i = 0; i < text.length; i++) { - emojiArray[i] = emojiCharacters[textChar[i]]; + emojiArray[i] = emojiCharacters[text[i]]; } message.say(emojiArray.join(""))