Sloped wall tops

This commit is contained in:
Joshua Barretto 2019-08-30 13:35:14 +01:00
parent 9e1a6662dc
commit c27d2e4c85
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -348,7 +348,7 @@ impl TownVol {
for wall in walls.iter() {
let col = self.col(*wall).unwrap();
let ground = col.ground;
for z in -1..2 {
for z in -1..3 {
self.set(Vec3::new(wall.x, wall.y, ground + z), CellKind::Wall.into());
}
}