Add walls even to map borders
This commit is contained in:
parent
fb926f8c84
commit
5fbb918132
|
@ -111,5 +111,13 @@ class Generator:
|
|||
result.tiles[y][x] = Tile.FLOOR
|
||||
elif c > 0:
|
||||
result.tiles[y][x] = Tile.WALL
|
||||
for x in range(width):
|
||||
for y in [0, height-1]:
|
||||
if grid[y][x] = Tile.FLOOR:
|
||||
grid[y][x] = Tile.WALL
|
||||
for y in range(height):
|
||||
for y in [0, width-1]:
|
||||
if grid[y][x] = Tile.FLOOR:
|
||||
grid[y][x] = Tile.WALL
|
||||
|
||||
return result
|
||||
|
|
Loading…
Reference in New Issue