From c602fa3ad75d943fcaccc27425aadef66c39c292 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 6 Apr 2021 09:56:41 -0400 Subject: [PATCH] Fix --- commands/edit-image/emoji-face.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/emoji-face.js b/commands/edit-image/emoji-face.js index cf0ae08a..b5db8912 100644 --- a/commands/edit-image/emoji-face.js +++ b/commands/edit-image/emoji-face.js @@ -47,7 +47,7 @@ module.exports = class EmojiFaceCommand extends Command { emojiURL = emoji.url; } else { const parsed = twemoji.parse(emoji); - if (!parsed.length || !parsed[0] || !parsed[0].url) return msg.reply('This emoji is not yet supported.'); + if (!parsed.length || !parsed[0].url) return msg.reply('This emoji is not yet supported.'); emojiURL = parsed[0].url; } const emojiData = await request.get(emojiURL);