From 41dc4e7d2b78b10c4e62c5c7ea9a7f1a3133d40f Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 1 Jun 2020 15:53:22 -0400 Subject: [PATCH] Spawn entities at the bottom-center of the screen, not the world origin --- macrovision.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macrovision.js b/macrovision.js index 4ba32e9e..5413fbc7 100644 --- a/macrovision.js +++ b/macrovision.js @@ -2652,7 +2652,7 @@ function prepareEntities() { button.addEventListener("click", e => { const newEntity = entityList[select.value].constructor() - displayEntity(newEntity, newEntity.defaultView, 0, 0, true, true); + displayEntity(newEntity, newEntity.defaultView, config.x, config.y, true, true); }); const categoryOption = document.createElement("option");