From 75c768666b4cb35841e5cf5dcc788ec95fe4bb74 Mon Sep 17 00:00:00 2001 From: "Marcus Str." Date: Thu, 6 Feb 2025 19:32:50 +0100 Subject: [PATCH] Fixed issue in defines.py --- defines.py | 2 +- perlin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defines.py b/defines.py index 2d04335..d3a9b08 100644 --- a/defines.py +++ b/defines.py @@ -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), diff --git a/perlin.py b/perlin.py index b462c31..5e1fa8c 100644 --- a/perlin.py +++ b/perlin.py @@ -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)):