diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js index f4d6e7d1f1ada7c03685c7f962f5cea16da5c46b..f575c26a965c1fae515f0ae5a2e8571ce69705e7 100644 --- a/src/002-config/fc-version.js +++ b/src/002-config/fc-version.js @@ -2,5 +2,5 @@ App.Version = { base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. pmod: "4.0.0-alpha.17", commitHash: null, - release: 1172, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. + release: 1173, // When getting close to 2000, please remove the check located within the onLoad() function defined at line five of src/js/eventHandlers.js. }; diff --git a/src/data/backwardsCompatibility/datatypeCleanup.js b/src/data/backwardsCompatibility/datatypeCleanup.js index dc90d89df371cd6010074b6819cac478d0874617..4cdc80a5be33585766c29ce3e2229b04431a7ab6 100644 --- a/src/data/backwardsCompatibility/datatypeCleanup.js +++ b/src/data/backwardsCompatibility/datatypeCleanup.js @@ -2309,7 +2309,7 @@ App.Entity.Utils.RARuleDatatypeCleanup = function() { return jobs[assignment]; } - if (!cond.hasOwnProperty("advancedMode")) { + if (V.releaseID < 1173) { cond.advancedMode = true; } }