diff --git a/commands/util/report.js b/commands/util/report.js index 832b5216..58fc7c08 100644 --- a/commands/util/report.js +++ b/commands/util/report.js @@ -39,10 +39,11 @@ module.exports = class ReportCommand extends Command { .setAuthor(msg.author.tag) .setTimestamp() .setColor(reasonColors[reason]); - for (const owner of this.client.owners){ + for (const owner of this.client.owners) { try { await owner.send(embed); } catch (err) { + console.log(err); continue; } }