diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-03-10 23:18:41 -0400 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-03-10 23:18:41 -0400 |
| commit | 483fefd8788f726be7f331a93d9c6608829a7e67 (patch) | |
| tree | 9ad16cdde9170e5f9fcb0ccbc74a2a61d751a103 | |
| parent | 51ad56e62d34bc43c75147e24f23574289caa737 (diff) | |
| download | PokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.tar.gz PokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.tar.bz2 PokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.zip | |
testing again
| -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); |
