From 1ddb4badffb60a4d2b18294bf1d45edaef37d875 Mon Sep 17 00:00:00 2001 From: nolan Date: Mon, 21 Jun 2021 17:24:12 -0700 Subject: [PATCH] Move prune silent argument up so it cannot be confused with startswith --- .../client/components/commands/moderation/Prune.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/structure/client/components/commands/moderation/Prune.js b/structure/client/components/commands/moderation/Prune.js index 7164887..79547d9 100644 --- a/structure/client/components/commands/moderation/Prune.js +++ b/structure/client/components/commands/moderation/Prune.js @@ -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,