Merge pull request #7 from AntumMT/recipe_fixes

Fix conflicting outside corner recipes
This commit is contained in:
Don 2017-07-14 20:40:14 -07:00 committed by GitHub
commit fe98461626
3 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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},
} }
}) })