load exclusion for 1.811 - hotfix

This commit is contained in:
Azgaar 2022-05-14 21:38:11 +03:00
parent e9ae71af59
commit 4a2a2ad967
3 changed files with 3 additions and 3 deletions

View file

@ -125,7 +125,7 @@ function uploadMap(file, callback) {
const isUpdated = mapVersion === currentVersion;
const isAncient = mapVersion < OLDEST_SUPPORTED_VERSION;
// TODO: temp condition for 1.811, remove when 1.82 is released
const isNewer = mapVersion > currentVersion && currentVersion !== 1.811;
const isNewer = mapVersion > currentVersion && mapVersion !== 1.811;
const isOutdated = mapVersion < currentVersion;
if (isInvalid) return showUploadMessage("invalid", mapData, mapVersion);