| 580 | } |
| 581 | |
| 582 | static bool is_smooth_wall_or_connector(MapExtras::MapCache &map, |
| 583 | const DFCoord &pos) { |
| 584 | return is_smooth_wall(map, pos) || is_connector(map, pos); |
| 585 | } |
| 586 | |
| 587 | // adds adjacent smooth walls and doors to the given tdir |
| 588 | static TileDirection get_adjacent_smooth_walls(MapExtras::MapCache &map, |
no test coverage detected