| 1067 | } |
| 1068 | |
| 1069 | static int getMaxStockpileId() |
| 1070 | { |
| 1071 | int max_id = 0; |
| 1072 | for (auto bld : world->buildings.other.STOCKPILE) |
| 1073 | max_id = std::max(max_id, bld->stockpile_number); |
| 1074 | return max_id; |
| 1075 | } |
| 1076 | |
| 1077 | static int getMaxCivzoneId() |
| 1078 | { |