diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-30 16:58:52 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-04-30 16:58:52 +0300 |
commit | 4e2a550ec92801f3ceaedfbed0d4f8b7b5308ed1 (patch) | |
tree | 82963dbf8c83b1396cdc29dc560bbcc15d32e86a | |
parent | 8350dcc7fb4d97b76e8e47800bba27d89a6f70e6 (diff) |
recycle snow slabs
-rw-r--r-- | extranodes/lox.lua | 7 |
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 |