save file migration

This commit is contained in:
Olivier Gagnon 2022-04-13 17:50:01 -04:00
parent 811ae1a751
commit 9f3423bd46
2 changed files with 4 additions and 1 deletions

@ -117,7 +117,7 @@ export const CONSTANTS: {
LatestUpdate: string;
} = {
VersionString: "1.6.4",
VersionNumber: 13,
VersionNumber: 14,
// Speed (in ms) at which the main loop is updated
_idleSpeed: 200,

@ -395,6 +395,9 @@ function evaluateVersionCompatibility(ver: string | number): void {
delete anyPlayer.resleeves;
}
}
if (ver < 14) {
delete (Settings as any).EditorTheme;
}
}
}