diff --git a/mod-list.html b/mod-list.html
index 0ac97b0f..e89a809a 100644
--- a/mod-list.html
+++ b/mod-list.html
@@ -287,6 +287,7 @@
| elem3.js | Adds all elements and combinations from Elemental 3 [Very Large] | Sophie |
| fools+.js | improves and makes fools.js EXTREMELY annoying. | SquareScreamYT |
| funny elements 2022-11-15.js | Adds a few curated randomly-generated elements | Alice |
+| funnynames.js | Adds various ways to mess with the names of elements | nousernamefound |
| funny_solid.js | Adds feces | Alice |
| haseulite.js | Adds Loona-related materials with various properties | Alice |
| lactose_intolerance_and_celiac.js | Makes humans explode on contact with milk, wheat, bread, or toast | Nubo318 |
diff --git a/mods/nousersthings.js b/mods/nousersthings.js
index 5aedfe34..e9614c07 100644
--- a/mods/nousersthings.js
+++ b/mods/nousersthings.js
@@ -1722,7 +1722,7 @@ elements.pn_explosion = {
elements.smasher = {
color: "#606060",
behavior: behaviors.WALL,
- category: "machines",
+ category: "deprecated",
tick: function(pixel){
for (var i = 0; i < squareCoords.length; i++) {
var coord = squareCoords[i];
@@ -1735,11 +1735,13 @@ elements.smasher = {
}
},
movable: false,
+ hidden: true
},
+/*
elements.mixer = {
color: "#F0F0F0",
behavior: behaviors.WALL,
- category: "machines",
+ category: "deprecated",
tick: function(pixel){
pixel.mixList = [];
for (var i = 0; i < squareCoords.length; i++) {
@@ -1767,7 +1769,9 @@ elements.mixer = {
},
movable: false,
noMix: true,
+ hidden: true,
},
+*/
elements.invisiblesupport = {
color: "#000000",
behavior: behaviors.WALL,
@@ -2898,4 +2902,15 @@ elements.specific_ray_emitter = {
}
},
insulate: true,
+}
+elements.run_some_code = {
+ color: "#68b2cf",
+ category: "tools",
+ canPlace: false,
+ onSelect: function(){
+ let code = prompt("Enter code to run")
+ if (code){
+ eval(code)
+ }
+ }
}
\ No newline at end of file