Move prune silent argument up so it cannot be confused with startswith

This commit is contained in:
nolan 2021-06-21 17:24:12 -07:00
parent 6ec4768cfa
commit 1ddb4badff

View File

@ -19,6 +19,12 @@ class PruneCommand extends Command {
"10 bot spam -b"
],
arguments: [
{
name: 'silent',
type: 'BOOLEAN',
types: ['FLAG'],
default: true
},
{
name: 'users',
aliases: [
@ -148,12 +154,6 @@ class PruneCommand extends Command {
type: 'BOOLEAN',
types: ['FLAG'],
default: true
},
{
name: 'silent',
type: 'BOOLEAN',
types: ['FLAG'],
default: true
}
],
guildOnly: true,