diff --git a/commands/util/help.js b/commands/util/help.js index 4873a41e..a75b1dc1 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -30,7 +30,7 @@ module.exports = class HelpCommand extends Command { let cmdCount = 0; for (const group of this.client.registry.groups.values()) { const owner = this.client.isOwner(msg.author); - const commands = group.commands.filter(cmd => !cmd.hidden && owner ? true : !cmd.ownerOnly); + const commands = group.commands.filter(cmd => owner ? true : !cmd.ownerOnly && !cmd.hidden); if (!commands.size) continue; cmdCount += commands.size; embed.addField( diff --git a/package.json b/package.json index 05fecfd9..c4a5b387 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "111.1.3", + "version": "111.1.4", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {