From 88cdf76048d148dbf518a2544b3296a3a37513d0 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Tue, 23 Jun 2020 11:21:31 -0400 Subject: [PATCH] Fix the world height being set wrongly when loading scenes --- macrovision.js | 1 + 1 file changed, 1 insertion(+) diff --git a/macrovision.js b/macrovision.js index f7d00206..d540be46 100644 --- a/macrovision.js +++ b/macrovision.js @@ -3585,6 +3585,7 @@ function importScene(data) { config.x = data.world.x; config.y = data.world.y; + document.querySelector("#options-height-value").value = data.world.height; document.querySelector("#options-height-unit").value = data.world.unit; if (data.canvasWidth) {