From 6706a94f5afd9d553bdfe612bf1786a64b90f7ae Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sat, 26 Aug 2017 01:51:29 +0000 Subject: [PATCH] Fix --- commands/moderation/lockdown.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/moderation/lockdown.js b/commands/moderation/lockdown.js index 5782901f..331b0da0 100644 --- a/commands/moderation/lockdown.js +++ b/commands/moderation/lockdown.js @@ -45,7 +45,7 @@ module.exports = class LockdownCommand extends Command { await msg.channel.overwritePermissions(msg.guild.defaultRole, { SEND_MESSAGES: false }); await msg.say(stripIndents` Lockdown started, users without overwrites can no longer post messages. - ${time ? 'Please use `lockdown stop` to end the lockdown.' : `Please wait ${time / 60000} minutes.`} + ${time ? `Please wait ${time / 60000} minutes.` : 'Please use `lockdown stop` to end the lockdown.'} `); if (!time) return null; await wait(time);