From f61a39955300d6f3f773a2d27520b795d311a1d3 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 23 Apr 2020 18:33:14 -0400 Subject: [PATCH] Make custom entities have a consistent size when created They'll always be 3/10ths as tall as the world is. --- macrovision.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/macrovision.js b/macrovision.js index 9869ac0b..05c858ff 100644 --- a/macrovision.js +++ b/macrovision.js @@ -1941,6 +1941,8 @@ function makeCustomEntity(url, x=0.5, y=0.5) { const entity = maker.constructor(); + entity.scale = config.height.toNumber("feet") / 20; + entity.ephemeral = true; displayEntity(entity, "custom", x, y, true, true); }