Skip to content

Commit

Permalink
Merge pull request #7 from AntumMT/recipe_fixes
Browse files Browse the repository at this point in the history
Fix conflicting outside corner recipes
  • Loading branch information
DonBatman committed Jul 15, 2017
2 parents 6da6148 + e6b23fd commit fe98461
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions asphault.lua
Expand Up @@ -235,9 +235,9 @@ minetest.register_craft({
minetest.register_craft({
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
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
Expand Down
6 changes: 3 additions & 3 deletions homedecor.lua
Expand Up @@ -237,9 +237,9 @@ minetest.register_craft({
minetest.register_craft({
output = "myroofs:asphalt_shingle_"..color.."_ocorner 3",
recipe = {
{"", "",""},
{"", item,""},
{"", item,item},
{"", "", ""},
{"", item, ""},
{item, "", item},
}
})
end
Expand Down
6 changes: 3 additions & 3 deletions straw.lua
Expand Up @@ -199,9 +199,9 @@ minetest.register_craft({
minetest.register_craft({
output = "myroofs:"..color.."_roof_ocorner 5",
recipe = {
{"", "",""},
{"",item,""},
{"",item,item},
{"", "", ""},
{"", item, ""},
{item, "", item},
}
})

Expand Down

0 comments on commit fe98461

Please sign in to comment.