From 83db032fb91996c926a5d007a9e5fa4abed65871 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 30 Dec 2021 16:55:37 -0500 Subject: add timeout command and fix some other moderation commands --- src/commands/moderation/lockdown.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/commands/moderation/lockdown.ts') diff --git a/src/commands/moderation/lockdown.ts b/src/commands/moderation/lockdown.ts index b9febbd..ae9a62b 100644 --- a/src/commands/moderation/lockdown.ts +++ b/src/commands/moderation/lockdown.ts @@ -31,15 +31,6 @@ export default class LockdownCommand extends BushCommand { channelTypes: ['GUILD_TEXT', 'GUILD_NEWS', 'GUILD_NEWS_THREAD', 'GUILD_PUBLIC_THREAD', 'GUILD_PRIVATE_THREAD'], optional: true }, - { - id: 'all', - description: 'Whether or not to lock all configured channels.', - match: 'flag', - flag: '--all', - prompt: 'Would you like to lockdown all configured channels?', - slashType: 'BOOLEAN', - optional: true - }, { id: 'reason', description: 'The reason for the lockdown.', @@ -48,6 +39,15 @@ export default class LockdownCommand extends BushCommand { prompt: 'What is the reason for the lockdown?', slashType: 'STRING', optional: true + }, + { + id: 'all', + description: 'Whether or not to lock all configured channels.', + match: 'flag', + flag: '--all', + prompt: 'Would you like to lockdown all configured channels?', + slashType: 'BOOLEAN', + optional: true } ], slash: true, -- cgit