From f2c9da655e282953ad7bf3554b3429cc3f4895df Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Tue, 2 Jan 2024 13:09:35 -0500 Subject: [PATCH] Update nousersthings.js --- mods/nousersthings.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index d945afb3..39c02e36 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -1517,4 +1517,16 @@ elements.invisiblesupport = { } }, category: "powders", +}, +elements.invisiblewall = { + color: "#000000", + behavior: behaviors.WALL, + tick: function(pixel){ + if (currentElement == "invisiblewall"){ + pixel.color = "rgb(15, 15, 15)"; + } else { + pixel.color = "rgba(0, 0, 0, -1)"; + } + }, + category: "solids", }