diff options
Diffstat (limited to 'stairsplus/panels.lua')
-rw-r--r-- | stairsplus/panels.lua | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/stairsplus/panels.lua b/stairsplus/panels.lua index a250fc3..e6f8871 100644 --- a/stairsplus/panels.lua +++ b/stairsplus/panels.lua @@ -18,7 +18,6 @@ function register_panel(modname, subname, recipeitem, groups, images, descriptio }) end - function stairsplus:register_panel(modname, subname, recipeitem, fields) local defs = { [""] = { @@ -82,30 +81,33 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields) end minetest.register_alias(modname..":panel_"..subname.."_bottom", modname..":panel_"..subname) - -- Some saw-less recipe. + -- Some saw-less recipes: + + minetest.register_craft({ + output = "moreblocks:panel_" .. subname .. " 12", + recipe = { + {recipeitem, ""}, + {recipeitem, recipeitem}, + }, + }) - minetest.register_craft({ - output = "moreblocks:panel_" .. subname .. " 12", - recipe = { - {recipeitem, ""}, - {recipeitem, recipeitem}, - }, - }) - minetest.register_craft({ - output = "moreblocks:panel_" .. subname .. " 12", - recipe = { - {"", recipeitem}, - {recipeitem, recipeitem}, - }, - }) - minetest.register_craft({ - type = "shapeless", - output = "moreblocks:panel_" .. subname, - recipe = {"moreblocks:micro_" .. subname, "moreblocks:micro_" .. subname}, - }) - minetest.register_craft({ - type = "shapeless", - output = recipeitem, - recipe = {"moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname}, - }) + minetest.register_craft({ + output = "moreblocks:panel_" .. subname .. " 12", + recipe = { + {"", recipeitem}, + {recipeitem, recipeitem}, + }, + }) + + minetest.register_craft({ + type = "shapeless", + output = "moreblocks:panel_" .. subname, + recipe = {"moreblocks:micro_" .. subname, "moreblocks:micro_" .. subname}, + }) + + minetest.register_craft({ + type = "shapeless", + output = recipeitem, + recipe = {"moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname, "moreblocks:panel_" .. subname}, + }) end |