diff --git a/commands/util/help.js b/commands/util/help.js index 290293ba..54df5456 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -48,7 +48,7 @@ module.exports = class HelpCommand extends Command { .setTitle(!showAll ? `Commands Available in ${msg.guild ? msg.guild.name : 'this DM'}` : 'All Commands') .setDescription(`Use ${msg.usage('')} to view detailed information about a specific command.`) .setColor(0x00AE86); - for (const group of this.client.registry.groups.array()) { + for(const group of this.client.registry.groups.array()) { embed.addField(group.name, !showAll ? group.commands.filter(c => c.isUsable(msg)).map(c => `\`${c.name}\``).join(', ') || 'None Available' : diff --git a/package.json b/package.json index 5f657462..ebe6051d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "18.2.2", + "version": "18.2.3", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": {