Update nousersthings.js

This commit is contained in:
JustAGenericUsername 2024-01-02 13:09:35 -05:00 committed by GitHub
parent 23f31d768e
commit f2c9da655e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

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