Local Storage

This commit is contained in:
Daniel Odendahl Jr
2017-05-13 18:15:37 +00:00
parent 73ad340cb1
commit 82d3c6eeca
37 changed files with 113 additions and 135 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ module.exports = class HelpCommand extends Command {
${commands[0].details || ''}
`);
} 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. Please be more specific: ${commands.map(c => c.name).join(', ')}`);
} else {
return msg.say(`Could not identify command. Use ${msg.usage(null)} to view a list of commands you can use.`);
}