| 24 | REQUIRE_GLOBAL(world); |
| 25 | |
| 26 | bool isDesignatedHollow(df::coord pos) |
| 27 | { |
| 28 | for (size_t i = 0; i < world->event.deep_vein_hollows.size(); i++) |
| 29 | { |
| 30 | auto *vein = world->event.deep_vein_hollows[i]; |
| 31 | for (size_t j = 0; j < vein->tiles.x.size(); j++) |
| 32 | if (pos == df::coord(vein->tiles.x[j], vein->tiles.y[j], vein->tiles.z[j])) |
| 33 | return true; |
| 34 | } |
| 35 | return false; |
| 36 | } |
| 37 | |
| 38 | command_result tubefill(color_ostream &out, std::vector<std::string> & params); |
| 39 |