| 1461 | } |
| 1462 | |
| 1463 | void Buildings::notifyCivzoneModified(df::building* bld) |
| 1464 | { |
| 1465 | if (bld->getType() != building_type::Civzone) |
| 1466 | return; |
| 1467 | |
| 1468 | //remove zone here needs to be the slow method |
| 1469 | remove_zone_from_all_buildings(bld); |
| 1470 | add_zone_to_all_buildings(bld); |
| 1471 | } |
| 1472 | |
| 1473 | void Buildings::clearBuildings(color_ostream& out) { |
| 1474 | corner1.clear(); |
nothing calls this directly
no test coverage detected