From ec33023467f8353c30c917f9cc21743a0fd87d36 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 15 Jun 2020 19:58:04 -0400 Subject: [PATCH] List more options in help details --- commands/edit-avatar/chocolate-milk.js | 2 +- commands/edit-avatar/sip.js | 2 +- commands/edit-image/ace-attorney.js | 1 + commands/edit-image/apple-engraving.js | 1 + commands/edit-image/convert-image.js | 1 + commands/edit-image/undertale.js | 1 + commands/games-sp/whos-that-pokemon.js | 1 + package.json | 2 +- 8 files changed, 8 insertions(+), 3 deletions(-) diff --git a/commands/edit-avatar/chocolate-milk.js b/commands/edit-avatar/chocolate-milk.js index fad9329e..8b5a9ad2 100644 --- a/commands/edit-avatar/chocolate-milk.js +++ b/commands/edit-avatar/chocolate-milk.js @@ -25,7 +25,7 @@ module.exports = class ChocolateMilkCommand extends Command { }, { key: 'direction', - prompt: 'What direction should the avatar face?', + prompt: 'What direction should the avatar face? Either right or left.', type: 'string', oneOf: ['left', 'right'], default: 'left', diff --git a/commands/edit-avatar/sip.js b/commands/edit-avatar/sip.js index ea05b9d2..15e7e52d 100644 --- a/commands/edit-avatar/sip.js +++ b/commands/edit-avatar/sip.js @@ -33,7 +33,7 @@ module.exports = class SipCommand extends Command { }, { key: 'direction', - prompt: 'What direction should the avatar face?', + prompt: 'What direction should the avatar face? Either right or left.', type: 'string', oneOf: ['left', 'right'], default: 'left', diff --git a/commands/edit-image/ace-attorney.js b/commands/edit-image/ace-attorney.js index fca4c88f..eee0d7a6 100644 --- a/commands/edit-image/ace-attorney.js +++ b/commands/edit-image/ace-attorney.js @@ -27,6 +27,7 @@ module.exports = class AceAttorneyCommand extends Command { group: 'edit-image', memberName: 'ace-attorney', description: 'Sends a text box from Ace Attorney with the quote and character of your choice.', + details: `**Characters:** ${Object.keys(characters).join(', ')}` throttling: { usages: 1, duration: 10 diff --git a/commands/edit-image/apple-engraving.js b/commands/edit-image/apple-engraving.js index c8b89d76..d5a729ce 100644 --- a/commands/edit-image/apple-engraving.js +++ b/commands/edit-image/apple-engraving.js @@ -11,6 +11,7 @@ module.exports = class AppleEngravingCommand extends Command { group: 'edit-image', memberName: 'apple-engraving', description: 'Engraves the text of your choice onto an Apple product.', + details: `**Products:** ${Object.keys(products).join(', ')}`, credit: [ { name: 'Apple', diff --git a/commands/edit-image/convert-image.js b/commands/edit-image/convert-image.js index d3dd63ea..ec3d9a2d 100644 --- a/commands/edit-image/convert-image.js +++ b/commands/edit-image/convert-image.js @@ -16,6 +16,7 @@ module.exports = class ConvertImageCommand extends Command { group: 'edit-image', memberName: 'convert-image', description: 'Converts an image or user\'s avatar from one format to another.', + details: `**Formats:** ${Object.keys(formats).join(', ')}`, throttling: { usages: 1, duration: 10 diff --git a/commands/edit-image/undertale.js b/commands/edit-image/undertale.js index 60248968..e404d74a 100644 --- a/commands/edit-image/undertale.js +++ b/commands/edit-image/undertale.js @@ -28,6 +28,7 @@ module.exports = class UndertaleCommand extends Command { group: 'edit-image', memberName: 'undertale', description: 'Sends a text box from Undertale with the quote and character of your choice.', + details: `**Characters:** ${characters.join(', ')}`, throttling: { usages: 1, duration: 10 diff --git a/commands/games-sp/whos-that-pokemon.js b/commands/games-sp/whos-that-pokemon.js index 18641f4d..7f278684 100644 --- a/commands/games-sp/whos-that-pokemon.js +++ b/commands/games-sp/whos-that-pokemon.js @@ -14,6 +14,7 @@ module.exports = class WhosThatPokemonCommand extends Command { group: 'games-sp', memberName: 'whos-that-pokemon', description: 'Guess who that Pokémon is.', + details: `**Difficulties:** ${difficulties.join(', ')}`, throttling: { usages: 1, duration: 10 diff --git a/package.json b/package.json index ed1363ab..a5bb01ac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.29.1", + "version": "116.29.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {