Added circular crafting rule to 3-microblock stairs

This commit is contained in:
Marcin
2015-06-27 23:06:43 +02:00
부모 18d3ff6951
커밋 49d52791a4
2개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제

파일 보기

@@ -110,6 +110,12 @@ function stairsplus:register_micro(modname, subname, recipeitem, fields)
recipe = {modname .. ":slab_" .. subname}, recipe = {modname .. ":slab_" .. subname},
}) })
minetest.register_craft({
type = "shapeless",
output = modname .. ":micro_" .. subname .. " 3",
recipe = {modname .. ":stair_" .. subname .. "_right_half"},
})
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
output = modname .. ":micro_" .. subname .. " 2", output = modname .. ":micro_" .. subname .. " 2",

파일 보기

@@ -179,12 +179,6 @@ function stairsplus:register_stair(modname, subname, recipeitem, fields)
recipe = {modname .. ":stair_" .. subname .. "_half"}, recipe = {modname .. ":stair_" .. subname .. "_half"},
}) })
minetest.register_craft({
type = "shapeless",
output = modname .. ":stair_" .. subname .. "_half",
recipe = {modname .. ":stair_" .. subname .. "_right_half"},
})
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
output = modname .. ":stair_" .. subname, output = modname .. ":stair_" .. subname,