fix missing wall bottom faces

This commit is contained in:
Laura Klünder 2017-11-14 12:26:49 +01:00
parent 1271789d06
commit f8734da8e5

View file

@ -132,7 +132,7 @@ class MapRenderer:
walls = geoms.walls.union(add_walls)
if walls is not None:
engine.add_geometry(walls.filter(bottom=(not self.full_levels and engine.is_3d)),
engine.add_geometry(walls.filter(bottom=(self.full_levels or not engine.is_3d)),
height=geoms.default_height, fill=FillAttribs('#aaaaaa'))
if geoms.walls_extended and self.full_levels and engine.is_3d: