From 99a3cfc4bce457490c63eb2d339a3665f87a6848 Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Sun, 28 Apr 2024 19:30:54 -0400 Subject: [PATCH] t --- mods/buildingreplicator.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/buildingreplicator.js b/mods/buildingreplicator.js index bd05b3f0..d34e3ae3 100644 --- a/mods/buildingreplicator.js +++ b/mods/buildingreplicator.js @@ -132,7 +132,7 @@ elements.submitted_blueprint_2_creator = { } } } -elements.custombp_creator = { +elements.custom_bp_spawner = { color: "#64abfd", behavior: behaviors.WALL, state: "solid", @@ -166,13 +166,13 @@ let bpsizeH = 15; let bpsizeW = 15; let generatedBP = []; let seenElements = {}; -elements.bp_generator = { +elements.bp_scanner = { color: "#64abfd", behavior: behaviors.SOLID, state: "solid", category: "special", onSelect: function(pixel){ - bpsizeH = prompt("Enter the height of the blueprint", 15); + bpsizeH = prompt("Enter the height of the blueprint. It will be scanned from the TOP LEFT corner.", 15); bpsizeW = prompt("Enter the width of the blueprint", 15); generatedBP = []; for (let y = 1; y <= bpsizeH; y++){