diff --git a/src/structure/components/commands/moderation/Lockdown.js b/src/structure/components/commands/moderation/Lockdown.js index e64d732..6868f84 100644 --- a/src/structure/components/commands/moderation/Lockdown.js +++ b/src/structure/components/commands/moderation/Lockdown.js @@ -10,7 +10,7 @@ class LockdownCommand extends ModerationCommand { module: 'moderation', options: [{ name: 'duration', - description: 'How long the mute should last', + description: 'How long the lockdown should last', type: 'TIME' }, { name: 'channels', @@ -22,7 +22,7 @@ class LockdownCommand extends ModerationCommand { showUsage: true, memberPermissions: ['MANAGE_CHANNELS'], clientPermissions: ['MANAGE_CHANNELS'], - skipOptions: ['users'] + skipOptions: ['users', 'points', 'expiration', 'force', 'silent'] }); } diff --git a/src/structure/components/commands/moderation/Unlockdown.js b/src/structure/components/commands/moderation/Unlockdown.js index 69f3dc6..ea5577e 100644 --- a/src/structure/components/commands/moderation/Unlockdown.js +++ b/src/structure/components/commands/moderation/Unlockdown.js @@ -18,7 +18,7 @@ class UnlockdownCommand extends ModerationCommand { showUsage: true, memberPermissions: ['MANAGE_CHANNELS'], clientPermissions: ['MANAGE_CHANNELS'], - skipOptions: ['users'] + skipOptions: ['users', 'points', 'expiration', 'force', 'silent'] }); } @@ -34,7 +34,7 @@ class UnlockdownCommand extends ModerationCommand { }); return { content: result, _edit: true }; - + } }