| 1075 | } |
| 1076 | |
| 1077 | static int getMaxCivzoneId() |
| 1078 | { |
| 1079 | int max_id = 0; |
| 1080 | for (auto bld : world->buildings.other.ANY_ZONE) |
| 1081 | max_id = std::max(max_id, bld->zone_num); |
| 1082 | return max_id; |
| 1083 | } |
| 1084 | |
| 1085 | bool Buildings::constructAbstract(df::building *bld) |
| 1086 | { |