Fixed issue in defines.py

This commit is contained in:
Marcus Str. 2025-02-06 19:32:50 +01:00
parent ef5fba6345
commit 75c768666b
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ mstr_ortho_layers = [
("highway", "residential", 4),
("highway", "primary", 6),
("highway", "secondary", 3),
("highway", "trunk", 3)
("highway", "trunk", 3),
("highway", "tertiary", 5),
("highway", "unclassified", 4),
("highway", "living_street", 3),

View File

@ -62,7 +62,7 @@ class mstr_perlin:
base = Image.new("RGBA", (bw,bh))
if len(clr) == 4:
wh = 2048
wh = 3000
base = Image.new("RGBA", (bw,bh), clr[0])
for c in range(len(clr)):