From 0d7c7b66479407582bd7a46ba8c90b1804bf8392 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sun, 9 Apr 2023 09:18:03 -0500 Subject: [PATCH] add zero-width space --- commands/drawDesign.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index de15387..049b563 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -215,7 +215,7 @@ function charIterate(input) { if (charIterateState == undefined) { charIterateState = 0; } - if (charIterateState < (input.length + 1)) { + if (charIterateState < (input.length - 1)) { charIterateState++; } else { charIterateState = 0;