From d35cbb903d956dfffc42664d979dce72ee568c70 Mon Sep 17 00:00:00 2001 From: Caleb Fontenot Date: Sun, 9 Apr 2023 09:09:34 -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 cd82232..28b945f 100644 --- a/commands/drawDesign.cjs +++ b/commands/drawDesign.cjs @@ -260,7 +260,7 @@ function design5(input) { if (dist > radius - 1 && dist < radius + 1) { //&& dist > radius - 1 lineHasInput = true; - outputLine += input.charAt("​"+ charIterate(input)); //zero-width space + outputLine += "​"+ input.charAt(charIterate(input)); //zero-width space } else { outputLine += " "; }