This commit is contained in:
Dragon Fire
2020-02-02 15:09:02 -05:00
parent 1680b5917d
commit 5f3071f653
+1 -1
View File
@@ -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++;
}