summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extranodes/lox.lua7
1 files changed, 7 insertions, 0 deletions
diff --git a/extranodes/lox.lua b/extranodes/lox.lua
index 93954fe..a4831a6 100644
--- a/extranodes/lox.lua
+++ b/extranodes/lox.lua
@@ -189,4 +189,11 @@ minetest.register_craft({
{ "tnt:tnt", "technic:lox", "tnt:tnt"},
{ "technic:lox", "tnt:tnt", "technic:lox"}
},
+ })
+
+-- since there will be a significant surplus of snow slabs, a recipe for recycling is in order
+minetest.register_craft({
+ output = "default:snowblock",
+ type = "shapeless",
+ recipe = { "stairs:slab_snowblock", "stairs:slab_snowblock" },
}) \ No newline at end of file