From e765f24c4c7b7fa69f48c7b7f28e9e7efd2ef6c6 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sat, 8 Apr 2023 23:17:43 -0500 Subject: [PATCH] design 5 --- commands/drawDesign.cjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/drawDesign.cjs b/commands/drawDesign.cjs index 6ef4ce3..905feb9 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) { + if (charIterateState > input.length) { charIterateState++; } else { charIterateState = 0;