diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-05-21 13:53:06 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-05-21 13:53:06 +0200 |
commit | f6c6cfa47e922907aa80bd892308e1aec10e9954 (patch) | |
tree | 18c214940079a902e56d6233dfd25d3f90894050 /data.js | |
parent | 9be7f7d8beb3d037cc656b06d8289c7133d1249e (diff) | |
download | washingtons-war-f6c6cfa47e922907aa80bd892308e1aec10e9954.tar.gz |
Full map.
Diffstat (limited to 'data.js')
-rw-r--r-- | data.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -36,10 +36,12 @@ function getEdge(A, B) { let info = {}; function box(category, A, x, y) { + x += 40; y += 36; BOXES[A] = { name: A, category: category, x: x, y: y }; } function space(colony, name, x, y, type) { + x += 40; y += 36; if (type == 'winter-quarters') { x += 1; y += 1; } |