Skip to content
This repository has been archived by the owner on Dec 19, 2018. It is now read-only.

Commit

Permalink
Update commands/eval.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Ray committed Nov 24, 2018
1 parent fc992b7 commit 5137aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/eval.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 5137aa0

Please sign in to comment.