Merge pull request #7 from AntumMT/recipe_fixes
Fix conflicting outside corner recipes
This commit is contained in:
commit
fe98461626
@ -235,9 +235,9 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
|
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "",""},
|
{"", "", ""},
|
||||||
{"", "myroofs:asphalt_shingle_"..color.."_bundle",""},
|
{"", "myroofs:asphalt_shingle_"..color.."_bundle", ""},
|
||||||
{"", "myroofs:asphalt_shingle_"..color.."_bundle","myroofs:asphalt_shingle_"..color.."_bundle"},
|
{"myroofs:asphalt_shingle_"..color.."_bundle", "", "myroofs:asphalt_shingle_"..color.."_bundle"},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
@ -237,9 +237,9 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
|
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "",""},
|
{"", "", ""},
|
||||||
{"", item,""},
|
{"", item, ""},
|
||||||
{"", item,item},
|
{item, "", item},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
@ -199,9 +199,9 @@ minetest.register_craft({
|
|||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "myroofs:"..color.."_roof_ocorner 5",
|
output = "myroofs:"..color.."_roof_ocorner 5",
|
||||||
recipe = {
|
recipe = {
|
||||||
{"", "",""},
|
{"", "", ""},
|
||||||
{"",item,""},
|
{"", item, ""},
|
||||||
{"",item,item},
|
{item, "", item},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user