From c31e8c8052386de10ef85626f508d608c6a55df1 Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 6 Nov 2023 17:02:27 +0100 Subject: events WIP --- tools/gencode.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools/gencode.js') diff --git a/tools/gencode.js b/tools/gencode.js index e2522e7..39c87bd 100644 --- a/tools/gencode.js +++ b/tools/gencode.js @@ -30,7 +30,9 @@ for (let line of fs.readFileSync("events.txt", "utf-8").split("\n")) { continue if (line === "EOF") break - line = line.split(" ") + // line = line.split(" ") + // split by spaces unless those spaces are within double quotes. + line = line.match(/(?:[^\s"]+|"[^"]*")+/g) switch (line[0]) { case "CARD": if (first++) { -- cgit v1.2.3