diff options
Diffstat (limited to 'commands/Owners Only/eval.js')
| -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 09a6374..d2a889e 100644 --- a/commands/Owners Only/eval.js +++ b/commands/Owners Only/eval.js @@ -28,7 +28,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 }); @@ -49,7 +49,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 }); |
