| 260 | } |
| 261 | |
| 262 | static bool can_dig_up_stair(df::tiletype tt) { |
| 263 | df::tiletype_shape shape = tileShape(tt); |
| 264 | return shape == df::tiletype_shape::WALL || |
| 265 | shape == df::tiletype_shape::FORTIFICATION; |
| 266 | } |
| 267 | |
| 268 | static bool can_dig_down_stair(df::tiletype tt) { |
| 269 | df::tiletype_shape shape = tileShape(tt); |