From e44e09f40261b16ee7f049db39baee393da28218 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 08:56:53 -0400 Subject: [PATCH] Fix --- commands/other/kino.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/kino.js b/commands/other/kino.js index a332578a..39d3f678 100644 --- a/commands/other/kino.js +++ b/commands/other/kino.js @@ -95,7 +95,7 @@ module.exports = class KinoCommand extends Command { const chunks = []; let currentChunk = ''; for (const paragraph of story.split('\n\n')) { - if (paragraph === '***') { + if (paragraph === '***' && currentChunk) { chunks.push(currentChunk); currentChunk = '***\n\n'; continue;