| 288 | } |
| 289 | |
| 290 | static bool can_dig_ramp(df::tiletype tt) { |
| 291 | df::tiletype_shape shape = tileShape(tt); |
| 292 | return shape == df::tiletype_shape::WALL || |
| 293 | shape == df::tiletype_shape::FORTIFICATION; |
| 294 | } |
| 295 | |
| 296 | static void dig_type(MapExtras::MapCache &map, const DFCoord &pos, |
| 297 | df::tiletype tt) { |