From 2677101c0dabbb7d2517dc1aff8182d3f760cd86 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 18 May 2021 21:47:22 -0400 Subject: [PATCH] Fix --- structures/Command.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/Command.js b/structures/Command.js index da0f69ca..f26b204e 100644 --- a/structures/Command.js +++ b/structures/Command.js @@ -20,7 +20,7 @@ module.exports = class XiaoCommand extends Command { } hasPermission(msg, ownerOverride) { - if (ownerOverride && this.client.isOwner(msg.author)) return true; + if (this.client.isOwner(msg.author)) return true; if (this.patronOnly && !this.client.patreon.isPatron(msg.author.id)) { return stripIndents` The \`${this.name}\` command can only be used by Patrons.