|
|
@ -122,6 +122,7 @@ static df::building_stockpilest* find_stockpile(int32_t stockpile_number) {
|
|
|
|
|
|
|
|
|
|
|
|
static void validate_stockpile_configs(color_ostream& out,
|
|
|
|
static void validate_stockpile_configs(color_ostream& out,
|
|
|
|
unordered_map<df::building_stockpilest *, PersistentDataItem> &cache) {
|
|
|
|
unordered_map<df::building_stockpilest *, PersistentDataItem> &cache) {
|
|
|
|
|
|
|
|
vector<int> to_remove;
|
|
|
|
for (auto& entry : watched_stockpiles) {
|
|
|
|
for (auto& entry : watched_stockpiles) {
|
|
|
|
int stockpile_number = entry.first;
|
|
|
|
int stockpile_number = entry.first;
|
|
|
|
PersistentDataItem &c = entry.second;
|
|
|
|
PersistentDataItem &c = entry.second;
|
|
|
@ -131,11 +132,13 @@ static void validate_stockpile_configs(color_ostream& out,
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_TRADE) &&
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_TRADE) &&
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_DUMP) &&
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_DUMP) &&
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_TRAIN))) {
|
|
|
|
!get_config_bool(c, STOCKPILE_CONFIG_TRAIN))) {
|
|
|
|
remove_stockpile_config(out, stockpile_number);
|
|
|
|
to_remove.push_back(stockpile_number);
|
|
|
|
continue;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cache.emplace(bld, c);
|
|
|
|
cache.emplace(bld, c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int stockpile_number : to_remove)
|
|
|
|
|
|
|
|
remove_stockpile_config(out, stockpile_number);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// remove this function once saves from 50.08 are no longer compatible
|
|
|
|
// remove this function once saves from 50.08 are no longer compatible
|
|
|
|