From a0a3cdd7219a66997a9d115fd15a4d82986154af Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Wed, 8 Nov 2017 12:28:00 +0000 Subject: [PATCH] Examples --- commands/util/help.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands/util/help.js b/commands/util/help.js index 5db41833..86361ce3 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -34,6 +34,8 @@ module.exports = class HelpCommand extends Command { **Format**: ${msg.anyUsage(`${data.name} ${data.format || ''}`)} **Aliases**: ${data.aliases.join(', ') || 'None'} **Group**: ${data.group.name} (\`${data.groupID}:${data.memberName}\`) + **Examples**: + ${data.examples.join('\n') || 'None'} `); } else if (commands.length > 1) { return msg.say(`Multiple commands found: ${commands.map(cmd => cmd.name).join(', ')}`);