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
-2
View File
@@ -49,14 +49,12 @@ module.exports = class AceAttorneyCommand extends Command {
args: [
{
key: 'character',
prompt: `What character do you want to use? Either ${list(Object.keys(characters), 'or')}.`,
type: 'string',
oneOf: Object.values(characters).reduce((a, b) => a.concat(b)),
parse: character => character.toLowerCase()
},
{
key: 'quote',
prompt: 'What should the character say?',
type: 'string',
max: 250
}