Remove prompt from all commands

This commit is contained in:
Dragon Fire
2024-03-30 00:30:52 -04:00
parent c258b41dae
commit 8d8198784e
400 changed files with 0 additions and 548 deletions
-3
View File
@@ -32,7 +32,6 @@ module.exports = class DearLiberalsCommand extends Command {
args: [
{
key: 'hashtag',
prompt: 'What hashtag should be on Ben Shapiro\'s sign? No spaces or symbols.',
type: 'string',
max: 10,
validate: hashtag => /^[A-Z0-9]+$/i.test(hashtag)
@@ -40,7 +39,6 @@ module.exports = class DearLiberalsCommand extends Command {
{
key: 'blueText',
label: 'blue text',
prompt: 'What should the blue text be?',
type: 'string',
max: 42,
parse: blueText => blueText.toUpperCase()
@@ -48,7 +46,6 @@ module.exports = class DearLiberalsCommand extends Command {
{
key: 'redText',
label: 'red text',
prompt: 'What should the red text be?',
type: 'string',
max: 24,
parse: redText => redText.toUpperCase()