From a2c821b7e5fa7c26cfc5fb9ac74f009d62d8eb4a Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Fri, 23 Jul 2021 17:02:36 -0600 Subject: [PATCH] bot.exec: newline --- src/modules/bot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/bot.js b/src/modules/bot.js index 76b0481..1a2b544 100644 --- a/src/modules/bot.js +++ b/src/modules/bot.js @@ -120,7 +120,7 @@ exec.category = CATEGORY; exec.helpText = "Executes a command"; exec.callback = async function (msg, line) { const proc = spawn(line); - let out = `Spawned ${proc.pid}: \`${line}'`; + let out = `Spawned ${proc.pid}: \`${line}'\n`; proc.stdout.on("data", (data) => { out += data + "\n"; });