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", }