diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-06-04 22:31:25 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-12-10 18:16:55 +0100 |
commit | f7b2f46105cd4db28668a439a1434588b99208c1 (patch) | |
tree | d5ae316733868b22c6d6b65db624259c33abf19a /tools/genboxes.js | |
parent | 1c937f47492b392a2b59c5353991dc0a11eb95bb (diff) | |
download | plantagenet-f7b2f46105cd4db28668a439a1434588b99208c1.tar.gz |
Fix boxes.
Diffstat (limited to 'tools/genboxes.js')
-rw-r--r-- | tools/genboxes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genboxes.js b/tools/genboxes.js index 356955b..89ba6fb 100644 --- a/tools/genboxes.js +++ b/tools/genboxes.js @@ -54,5 +54,5 @@ flush() console.log("const boxes = {") for (let key in boxes) - console.log("\t" + key + ": " + JSON.stringify(boxes[key]) + ",") + console.log("\t\"" + key + "\": " + JSON.stringify(boxes[key]) + ",") console.log("}") |