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) {