From e89c8ad278519ac782bee5487e48aebec708a9db Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 29 Dec 2018 23:56:45 -0600 Subject: [PATCH] Fixed the save version not getting set --- game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.js b/game.js index fa638ab..23c1d4b 100644 --- a/game.js +++ b/game.js @@ -4883,7 +4883,7 @@ window.addEventListener('load', function(event) { construct_options(); construct_panels(); - document.querySelector("#save-version").innerText = save_version; + document.querySelector("#save-version").value = save_version; document.querySelectorAll("input[type='number']").forEach(function(x) { x.addEventListener("input", function() { updatePreview(x.id); });