From 8e159fa9515ec0b47e53ce597d144f359f925bb9 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 15 Sep 2020 15:26:59 -0400 Subject: [PATCH] Fix --- commands/util/exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util/exec.js b/commands/util/exec.js index d2da01a0..0eb9eb16 100644 --- a/commands/util/exec.js +++ b/commands/util/exec.js @@ -25,7 +25,7 @@ module.exports = class ExecCommand extends Command { run(msg, { command }) { const results = this.exec(command); return msg.reply(stripIndents` - _${results.err ? 'Successfully executed.' : 'An error occurred:'}_ + _${results.err ? 'An error occurred:' : 'Successfully executed.'}_ \`\`\`sh ${results.std} \`\`\`