diff --git a/commands/General/help.js b/commands/General/help.js index d6726fa4..17b6b66a 100644 --- a/commands/General/help.js +++ b/commands/General/help.js @@ -50,7 +50,7 @@ class Help extends BaseCommand { commands.forEach(c => { if (!categories.includes(c.category)) { - if (c.category === "Owner" && interaction.member.id !== client.config.owner.id) return; + if (c.category === "Owner" && interaction.user.id !== client.config.owner.id) return; categories.push(c.category); } });