1
0
mirror of https://github.com/mt-mods/homedecor_modpack.git synced 2024-09-26 05:10:22 +02:00

changed recipe for wooden shingles.

This commit is contained in:
Vanessa Ezekowitz 2012-09-24 06:35:16 -04:00
parent f33e520fab
commit c3b8a65b8d

View File

@ -170,8 +170,16 @@ minetest.register_craft( {
minetest.register_craft( { minetest.register_craft( {
output = 'homedecor:shingles_wood 12', output = 'homedecor:shingles_wood 12',
recipe = { recipe = {
{ 'default:wood', 'default:wood'}, { 'default:stick', 'default:wood'},
{ 'default:wood', 'default:wood'}, { 'default:wood', 'default:stick'},
},
})
minetest.register_craft( {
output = 'homedecor:shingles_wood 12',
recipe = {
{ 'default:wood', 'default:stick'},
{ 'default:stick', 'default:wood'},
}, },
}) })