From 18cb4dd198023a549e38ce55af2c293958903c5b Mon Sep 17 00:00:00 2001 From: Matthew Carpenter Date: Sat, 25 Nov 2023 23:44:22 -0500 Subject: [PATCH] Bumped version number --- Mythras/templates/sheet.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Mythras/templates/sheet.js b/Mythras/templates/sheet.js index fb34f53384b4..58813aa7bf64 100644 --- a/Mythras/templates/sheet.js +++ b/Mythras/templates/sheet.js @@ -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"; } @@ -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"}); } }