mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-02-21 20:40:24 +01:00
15 lines
339 B
Lua
15 lines
339 B
Lua
local cm = stairsplus.resources.craft_materials
|
|
|
|
if cm.steel_ingot then
|
|
if moreblocks.settings.circular_saw_crafting then
|
|
minetest.register_craft({
|
|
output = "stairsplus:circular_saw",
|
|
recipe = {
|
|
{"", cm.steel_ingot, ""},
|
|
{"group:wood", "group:wood", "group:wood"},
|
|
{"group:wood", "", "group:wood"},
|
|
}
|
|
})
|
|
end
|
|
end
|