| 130 | void doInfiniteSky(color_ostream& out, int32_t howMany); |
| 131 | |
| 132 | static void constructionEventHandler(color_ostream &out, void *ptr) { |
| 133 | df::construction *constr = (df::construction *)ptr; |
| 134 | |
| 135 | if (constr->pos.z >= world->map.z_count_block - 2) |
| 136 | doInfiniteSky(out, 1); |
| 137 | } |
| 138 | |
| 139 | void addBlockColumns(color_ostream& out, int32_t quantity) { |
| 140 | int32_t z_count_block = world->map.z_count_block; |
nothing calls this directly
no test coverage detected