From 3867b30498727eac0889e330a2e00807eee21d8b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 11 Apr 2017 16:15:09 +0000 Subject: [PATCH] Remove the Quote Thing in the Prompts --- commands/imageedit/meme.js | 4 ++-- commands/random/strawpoll.js | 4 ++-- commands/response/choose.js | 2 +- package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/commands/imageedit/meme.js b/commands/imageedit/meme.js index 32b865a7..789b27cc 100644 --- a/commands/imageedit/meme.js +++ b/commands/imageedit/meme.js @@ -25,7 +25,7 @@ module.exports = class MemeCommand extends Command { } }, { key: 'toprow', - prompt: 'What should the top row of the meme to be? Surround in "" for multiple words.', + prompt: 'What should the top row of the meme to be?', type: 'string', validate: toprow => { if (toprow.match(/^[a-zA-Z0-9|.,!?'-\s]+$/) && toprow.length < 101) { @@ -35,7 +35,7 @@ module.exports = class MemeCommand extends Command { } }, { key: 'bottomrow', - prompt: 'What should the bottom row of the meme to be? Surround in "" for multiple words.', + prompt: 'What should the bottom row of the meme to be?', type: 'string', validate: bottomrow => { if (bottomrow.match(/^[a-zA-Z0-9|.,!?'-\s]+$/) && bottomrow.length < 101) { diff --git a/commands/random/strawpoll.js b/commands/random/strawpoll.js index 9b5f0f25..e15d9b97 100644 --- a/commands/random/strawpoll.js +++ b/commands/random/strawpoll.js @@ -15,7 +15,7 @@ module.exports = class StrawpollCommand extends Command { examples: [';strawpoll "Who likes chips?" "Me" "Not Me"'], args: [{ key: 'title', - prompt: 'What would you like the title of the Strawpoll to be? Surround in "" for multiple words.', + prompt: 'What would you like the title of the Strawpoll to be?', type: 'string', validate: title => { if (title.length > 200) { @@ -25,7 +25,7 @@ module.exports = class StrawpollCommand extends Command { } }, { key: 'choices', - prompt: 'What choices do you want me pick from? Surround each choice in "".', + prompt: 'What choices do you want me pick from?', type: 'string', infinite: true }] diff --git a/commands/response/choose.js b/commands/response/choose.js index eb14248d..7a748d85 100644 --- a/commands/response/choose.js +++ b/commands/response/choose.js @@ -13,7 +13,7 @@ module.exports = class ChooseCommand extends Command { examples: [';choose "Cow" "Sheep"', ';choose "Bark" "Woof" "Meow" "Moo"'], args: [{ key: 'choices', - prompt: 'What choices do you want me pick from? Surround each choice in "".', + prompt: 'What choices do you want me pick from?', type: 'string', infinite: true }] diff --git a/package.json b/package.json index a3a53608..5026efde 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiaobot", - "version": "22.2.1", + "version": "22.2.2", "description": "A Discord Bot", "main": "shardingmanager.js", "repository": {