| 254 | } |
| 255 | |
| 256 | static bool is_smooth_wall(const df::coord &pos) { |
| 257 | df::tiletype *tt = Maps::getTileType(pos); |
| 258 | return tt && tileSpecial(*tt) == df::tiletype_special::SMOOTH |
| 259 | && tileShape(*tt) == df::tiletype_shape::WALL; |
| 260 | } |
| 261 | |
| 262 | static bool is_aquifer(int16_t x, int16_t y, int16_t z, df::tile_designation *des = NULL) { |
| 263 | if (!des) |
no test coverage detected