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;