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;