summaryrefslogtreecommitdiff
path: root/tools/genboxes.py
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-10-11 11:58:58 +0200
committerTor Andersson <tor@ccxvii.net>2023-10-20 19:05:27 +0200
commite277a5e25c13469deacdf016b59b6073788b4d1c (patch)
treeba5ed6620af9c6280145537573371b97b873709b /tools/genboxes.py
parente0fa4e9230899f02113aa209d41ce8d9e18e992d (diff)
downloadtime-of-crisis-e277a5e25c13469deacdf016b59b6073788b4d1c.tar.gz
Add buildings to layout SVG.
Diffstat (limited to 'tools/genboxes.py')
-rw-r--r--tools/genboxes.py2
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