1
0
鏡像自 https://github.com/minetest-mods/moreblocks.git 已同步 2025-09-15 19:25:24 +02:00
Files
moreblocks/stairsplus/crafting.lua

15 行
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