feat: burg group editor - apply changes

This commit is contained in:
Azgaar 2024-10-09 00:33:22 +02:00
parent b6708bf698
commit b700bf0630
8 changed files with 102 additions and 29 deletions

View file

@ -838,7 +838,6 @@ export function resolveVersionConflicts(mapVersion) {
if (isOlderThan("1.97.0")) {
// v1.97.00 changed MFCG link to an arbitrary preview URL
options.villageMaxPopulation = 2000;
options.showBurgPreview = options.showMFCGMap;
delete options.showMFCGMap;
@ -972,5 +971,7 @@ export function resolveVersionConflicts(mapVersion) {
options.burgs = {
groups: groups.map(name => ({name, active: true, preview: null}))
};
delete options.villageMaxPopulation;
}
}