Sloped wall tops

This commit is contained in:
Joshua Barretto 2019-08-30 13:35:14 +01:00
parent 25d6ab03aa
commit c433ef36d7
2 changed files with 3 additions and 3 deletions

BIN
assets/world/module/wall/end_top.vox (Stored with Git LFS)

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());
}
}