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
@@ -24,20 +24,17 @@ module.exports = class SetUsesCommand extends Command {
args: [
{
key: 'mode',
prompt: 'Do you want to add, subtract, or set exact?',
type: 'string',
oneOf: modes,
parse: mode => mode.toLowerCase()
},
{
key: 'command',
prompt: 'What command do you want to modify?',
type: 'command'
},
{
key: 'num',
label: 'number',
prompt: 'How much do you want to change the usage?',
type: 'integer',
min: 1
}