diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-10-11 11:58:58 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-10-20 19:05:27 +0200 |
commit | e277a5e25c13469deacdf016b59b6073788b4d1c (patch) | |
tree | ba5ed6620af9c6280145537573371b97b873709b /tools/genboxes.py | |
parent | e0fa4e9230899f02113aa209d41ce8d9e18e992d (diff) | |
download | time-of-crisis-e277a5e25c13469deacdf016b59b6073788b4d1c.tar.gz |
Add buildings to layout SVG.
Diffstat (limited to 'tools/genboxes.py')
-rw-r--r-- | tools/genboxes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/genboxes.py b/tools/genboxes.py index eeea2b9..12f6c92 100644 --- a/tools/genboxes.py +++ b/tools/genboxes.py @@ -20,7 +20,7 @@ def flush(): for line in open("tools/boxes.svg").readlines(): line = line.strip() - if line == "<rect": + if line == "<rect" or line == "<image": flush() mode = 'rect' x = y = w = h = 0 |