just to be sure

This commit is contained in:
StempunkDev 2026-01-22 14:10:51 +01:00
parent 95a06dfb4b
commit 5fc5dc700a
2 changed files with 28 additions and 28 deletions

View file

@ -1037,8 +1037,8 @@ export function resolveVersionConflicts(mapVersion) {
delete options.villageMaxPopulation; delete options.villageMaxPopulation;
} }
if (isOlderThan("1.110.0")) { if (isOlderThan("1.111.0")) {
// v1.110.0 moved ice data from SVG to data model // v1.111.0 moved ice data from SVG to data model
// Migrate old ice SVG elements to new pack.ice structure // Migrate old ice SVG elements to new pack.ice structure
if (!pack.ice) { if (!pack.ice) {
pack.ice = []; pack.ice = [];

View file

@ -13,7 +13,7 @@
* Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2 * Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2
*/ */
const VERSION = "1.110.0"; const VERSION = "1.111.0";
if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function"); if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function");
{ {