From 819db49057f2005c5c37341eaac05818dde61579 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 8 Nov 2017 12:29:09 +0000 Subject: [PATCH] Fix --- 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 86361ce3..0517764c 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -35,7 +35,7 @@ module.exports = class HelpCommand extends Command { **Aliases**: ${data.aliases.join(', ') || 'None'} **Group**: ${data.group.name} (\`${data.groupID}:${data.memberName}\`) **Examples**: - ${data.examples.join('\n') || 'None'} + ${data.examples ? data.examples.join('\n') : 'None'} `); } else if (commands.length > 1) { return msg.say(`Multiple commands found: ${commands.map(cmd => cmd.name).join(', ')}`);