summaryrefslogtreecommitdiff
path: root/tools/genboxes.js
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-06-04 22:31:25 +0200
committerTor Andersson <tor@ccxvii.net>2023-12-10 18:16:55 +0100
commitf7b2f46105cd4db28668a439a1434588b99208c1 (patch)
treed5ae316733868b22c6d6b65db624259c33abf19a /tools/genboxes.js
parent1c937f47492b392a2b59c5353991dc0a11eb95bb (diff)
downloadplantagenet-f7b2f46105cd4db28668a439a1434588b99208c1.tar.gz
Fix boxes.
Diffstat (limited to 'tools/genboxes.js')
-rw-r--r--tools/genboxes.js2
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("}")