From 0ab49118732f02eb30967358ff72d21b81fdbd97 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 24 May 2020 01:12:33 -0400 Subject: [PATCH] Correct the position for newly created entities --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index ad23db59..015d75c0 100644 --- a/macrovision.js +++ b/macrovision.js @@ -2619,7 +2619,7 @@ function prepareEntities() { button.addEventListener("click", e => { const newEntity = entityList[select.value].constructor() - displayEntity(newEntity, newEntity.defaultView, 0.5, 1, true, true); + displayEntity(newEntity, newEntity.defaultView, 0, 0, true, true); }); const categoryOption = document.createElement("option");