diff --git a/src/js/input-controller.js b/src/js/input-controller.js index bbc3b5de6..1d53c3e96 100644 --- a/src/js/input-controller.js +++ b/src/js/input-controller.js @@ -351,6 +351,14 @@ function handleChar(char, charIndex) { return; } + if (char === "…") { + for (let i = 0; i < 3; i++) { + handleChar(".", charIndex + i); + } + + return; + } + if (char === "\n" && Config.funbox === "58008") { char = " "; }