| 1397 | } |
| 1398 | |
| 1399 | bool Maps::isTileAquifer(int32_t x, int32_t y, int32_t z) { |
| 1400 | df::tile_designation *des = Maps::getTileDesignation(x, y, z); |
| 1401 | return des && des->bits.water_table; |
| 1402 | } |
| 1403 | |
| 1404 | bool Maps::isTileHeavyAquifer(int32_t x, int32_t y, int32_t z) { |
| 1405 | df::tile_occupancy *occ = Maps::getTileOccupancy(x, y, z); |
nothing calls this directly
no test coverage detected