Remove the Quote Thing in the Prompts

This commit is contained in:
Daniel Odendahl Jr
2017-04-11 16:15:09 +00:00
parent 4b77e55025
commit 3867b30498
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -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) {
+2 -2
View File
@@ -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
}]
+1 -1
View File
@@ -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
}]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiaobot",
"version": "22.2.1",
"version": "22.2.2",
"description": "A Discord Bot",
"main": "shardingmanager.js",
"repository": {