From 5f3071f653aa073431f2f410b16a6e61812d7c77 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 2 Feb 2020 15:09:02 -0500 Subject: [PATCH] Fix lint --- commands/search/frinkiac.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/frinkiac.js b/commands/search/frinkiac.js index d29bbc83..44e88a71 100644 --- a/commands/search/frinkiac.js +++ b/commands/search/frinkiac.js @@ -41,7 +41,7 @@ module.exports = class FrinkiacCommand extends Command { for (const word of caption) { if (wrapped[currentLine].length + word.length < 26) { wrapped[currentLine] += ` ${word}`; - } else { + } else { wrapped.push(` ${word}`); currentLine++; }