Unblocked tunnels

This commit is contained in:
Joshua Barretto 2020-04-18 01:12:20 +01:00
parent aee7802d48
commit d0641ecbe3

View File

@ -433,7 +433,7 @@ impl Floor {
move |z| match self.tiles.get(tile_pos) { move |z| match self.tiles.get(tile_pos) {
Some(Tile::Solid) => BlockMask::nothing(), Some(Tile::Solid) => BlockMask::nothing(),
Some(Tile::Tunnel) => { Some(Tile::Tunnel) => {
if dist_to_wall < wall_thickness && (z as f32) < 8.0 - 8.0 * tunnel_dist.powf(4.0) { if dist_to_wall >= wall_thickness && (z as f32) < 8.0 - 8.0 * tunnel_dist.powf(4.0) {
empty empty
} else { } else {
BlockMask::nothing() BlockMask::nothing()