From 759d7658c743e328d64c5f000341ecac7af4cf2b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 2 May 2017 22:54:20 +0000 Subject: [PATCH] Oops --- commands/util/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util/help.js b/commands/util/help.js index b8d8a20d..eb40fd45 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -53,7 +53,7 @@ module.exports = class HelpCommand extends Command { .setColor(0x00AE86); for (const group of this.client.registry.groups.array()) { embed.addField(group.name, - command !== 'all' ? group.commands.filter(c => c.isUsable(msg)).map(c => `\`${c.name}\``).join(', ') || 'None Available' : group.commands); + command !== 'all' ? group.commands.filter(c => c.isUsable(msg)).map(c => `\`${c.name}\``).join(', ') || 'None Available' : group.commands.map(c => `\`${c.name}\``).join(', ')); } try { await msg.author.send({embed});