diff options
Diffstat (limited to 'commands')
| -rw-r--r-- | commands/Getting Started/help.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/Getting Started/help.js b/commands/Getting Started/help.js index 00e0c21..b7f3058 100644 --- a/commands/Getting Started/help.js +++ b/commands/Getting Started/help.js @@ -40,6 +40,8 @@ exports.run = (bot, msg, args) => { msg.channel.send({ embed }); } else { + + msg.channel.send(args[1]) const embed = new RichEmbed(); embed .setColor (0x00ae86) @@ -51,7 +53,6 @@ exports.run = (bot, msg, args) => { const commands = bot.categories.get(x); commands.forEach(cmd => { const command = bot.commands.get(x).get(cmd); - msg.channel.send(args[1]) if (command.help.name == args[1]) { const usage = command.help.usage ? `*${command.help.usage}* ` : '*none*'; embed.addField('Name', command.help.name, true); |
