This commit is contained in:
Daniel Odendahl Jr
2017-06-09 02:32:10 +00:00
parent 78d6e1eed1
commit 300411824d
25 changed files with 47 additions and 42 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ module.exports = class HelpCommand extends Command {
commands[0].group.name);
return msg.embed(embed);
} else if (commands.length > 1) {
return msg.say(`Multiple commands found, please be more specific: ${commands.map((c) => c.name).join(', ')}`);
return msg.say(`Multiple commands found: ${commands.map((c) => c.name).join(', ')}`);
} else {
return msg.say(`Could not identify command. Use ${msg.usage(null)} to view a list of commands.`);
}