From b1444572d16145b8f433b201c643bfca3eceeb90 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 4 May 2017 12:34:40 +0000 Subject: [PATCH] This Spready thing in Help Command --- commands/util/help.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/util/help.js b/commands/util/help.js index 7b42e2f6..290293ba 100644 --- a/commands/util/help.js +++ b/commands/util/help.js @@ -39,7 +39,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.'); + 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.`); } diff --git a/package.json b/package.json index 604f900b..2cc96bfd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "18.0.2", + "version": "18.0.3", "description": "A Discord Bot", "main": "shardingmanager.js", "scripts": {