From 5137aa018f68f63776e362c0161fa14d894bd01c Mon Sep 17 00:00:00 2001 From: Matthew Ray Date: Sat, 24 Nov 2018 01:57:14 -0500 Subject: [PATCH] Update commands/eval.js --- commands/eval.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/eval.js b/commands/eval.js index 9d04811..7f9f650 100644 --- a/commands/eval.js +++ b/commands/eval.js @@ -9,12 +9,12 @@ exports.run = async (client, message, args) => { } catch (err) { const embed2 = new Discord.RichEmbed(); - embed2.setAuthor(client.user.username, client.user.avatarURL); + //embed2.setAuthor(client.user.username, client.user.avatarURL); embed2.setColor('#FF0000'); embed2.setTitle('__JAVASCRIPT EVALUATION__'); embed2.setDescription(`\`ERROR\` \`\`\`js\n${err}\n\`\`\``); embed2.setTimestamp(); - embed2.setFooter(`${client.user.username} | Requested by ${message.author.username}#${message.author.discriminator}`); + embed2.setFooter(`${client.user.username} | Requested by ${message.author.username}#${message.author.discriminator}`, client.user.avatarURL); return message.channel.send(embed2); }