| 415 | } |
| 416 | |
| 417 | int regrass_map(color_ostream &out, const regrass_options &options) |
| 418 | { // Regrass entire map. |
| 419 | int count = 0; |
| 420 | for (auto block : world->map.map_blocks) |
| 421 | count += regrass_block(out, options, block); |
| 422 | return count; |
| 423 | } |
| 424 | |
| 425 | DFhackCExport command_result plugin_init(color_ostream &out, vector<PluginCommand> &commands) { |
| 426 | commands.push_back(PluginCommand( |
no test coverage detected