From 3a080c83fe5093f28c15bcf835c22c08e5d82f92 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Tue, 23 May 2017 18:26:00 +0000 Subject: [PATCH] Lockdown Defaults to Start --- commands/moderation/lockdown.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/moderation/lockdown.js b/commands/moderation/lockdown.js index 872baf6a..3eb60169 100644 --- a/commands/moderation/lockdown.js +++ b/commands/moderation/lockdown.js @@ -18,7 +18,8 @@ module.exports = class LockdownCommand extends Command { if (['start', 'stop'].includes(type.toLowerCase())) return true; return 'Please enter either `start` or `stop`.'; }, - parse: type => type.toLowerCase() + parse: type => type.toLowerCase(), + default: 'start' } ] });