diff --git a/index.html b/index.html index e7852b78..dc929b3d 100644 --- a/index.html +++ b/index.html @@ -6342,7 +6342,7 @@ - + diff --git a/modules/io/load.js b/modules/io/load.js index 30736043..89fcb584 100644 --- a/modules/io/load.js +++ b/modules/io/load.js @@ -124,7 +124,8 @@ function uploadMap(file, callback) { const isInvalid = !mapData || isNaN(mapVersion) || mapData.length < 26 || !mapData[5]; const isUpdated = mapVersion === currentVersion; const isAncient = mapVersion < OLDEST_SUPPORTED_VERSION; - const isNewer = mapVersion > currentVersion; + // TODO: temp condition for 1.811, remove when 1.82 is released + const isNewer = mapVersion > currentVersion && currentVersion !== 1.811; const isOutdated = mapVersion < currentVersion; if (isInvalid) return showUploadMessage("invalid", mapData, mapVersion);