Skip to content

Commit

Permalink
Bumped version number
Browse files Browse the repository at this point in the history
  • Loading branch information
DigitalPagan committed Nov 26, 2023
1 parent 819ae9f commit 18cb4dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Mythras/templates/sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ function upgradeGeneric3Dot1() {
* @param version the sheet version already parse to a float or 0 if not a valid float
*/
function versioning(sheet_type, version) {
const latestVersion = '3.4';
const latestVersion = '3.5';
if (!sheet_type) {
sheet_type = "pc";
}
Expand Down Expand Up @@ -386,8 +386,8 @@ function versioning(sheet_type, version) {
upgradeCharacter3Dot4();
}
versioning(sheet_type, '3.4');
} else if (version <= 3.4) { /* TODO change this when we next introduce a version that requires updating */
setAttrs({"version": "3.4"});
} else if (version <= 3.5) { /* TODO change this when we next introduce a version that requires updating */
setAttrs({"version": "3.5"});
}
}

Expand Down

0 comments on commit 18cb4dd

Please sign in to comment.