aboutsummaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorUnknown <jtsshieh@outlook.com>2018-03-10 23:18:41 -0400
committerUnknown <jtsshieh@outlook.com>2018-03-10 23:18:41 -0400
commit483fefd8788f726be7f331a93d9c6608829a7e67 (patch)
tree9ad16cdde9170e5f9fcb0ccbc74a2a61d751a103 /commands
parent51ad56e62d34bc43c75147e24f23574289caa737 (diff)
downloadPokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.tar.gz
PokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.tar.bz2
PokeBot-483fefd8788f726be7f331a93d9c6608829a7e67.zip
testing again
Diffstat (limited to 'commands')
-rw-r--r--commands/Getting Started/help.js3
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);