diff options
| -rw-r--r-- | commands/Owners Only/eval.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/Owners Only/eval.js b/commands/Owners Only/eval.js index f26ba3a..062635f 100644 --- a/commands/Owners Only/eval.js +++ b/commands/Owners Only/eval.js @@ -26,7 +26,7 @@ exports.run = async (bot, msg, args) => { .setAuthor('Eval Error') .setDescription('Eval\'s result') .addField(':inbox_tray: Input:', `\`\`\`js\n${code}\n\`\`\``) - .addField(':outbox_tray: Output:', `\`\`\`${err.stack}\`\`\``) + .addField(':outbox_tray: Output:', `\`\`\`${err}\`\`\``) .setFooter('Eval', bot.user.avatarURL) .setColor('RED'); return msg.channel.send({ embed }); @@ -47,7 +47,7 @@ exports.run = async (bot, msg, args) => { .setAuthor('Eval Error') .setDescription('Eval\'s result') .addField(':inbox_tray: Input:', `\`\`\`js\n${code}\n\`\`\``) - .addField(':outbox_tray: Output:', `\`\`\`${err.stack}\`\`\``) + .addField(':outbox_tray: Output:', `\`\`\`${err}\`\`\``) .setFooter('Eval', bot.user.avatarURL) .setColor('RED'); return msg.channel.send({ embed }); |
