diff --git a/commands/util-public/report.js b/commands/util-public/report.js index f996dad7..59d8fe17 100644 --- a/commands/util-public/report.js +++ b/commands/util-public/report.js @@ -53,9 +53,9 @@ module.exports = class ReportCommand extends Command { } async sendOwnerDM(embed) { - for (const owner of this.client.owners) { + for (const owner of this.client.owner) { try { - await owner.send({ embed }); + await this.client.users.cache.get(owner).send({ embed }); } catch { continue; }