Fix wooden fence and fence gate non-craftable

This commit is contained in:
Wuzzy 2017-07-31 00:47:04 +02:00
parent 66829c91c3
commit b83f0e7175
1 changed files with 4 additions and 4 deletions

View File

@ -267,15 +267,15 @@ for w=1, #woods do
minetest.register_craft({
output = 'mcl_fences:'..id..' 3',
recipe = {
{wood[5], 'mcl_core:stick', wood[5]},
{wood[5], 'mcl_core:stick', wood[5]},
{wood[6], 'mcl_core:stick', wood[6]},
{wood[6], 'mcl_core:stick', wood[6]},
}
})
minetest.register_craft({
output = 'mcl_fences:'..id_gate,
recipe = {
{'mcl_core:stick', wood[5], 'mcl_core:stick'},
{'mcl_core:stick', wood[5], 'mcl_core:stick'},
{'mcl_core:stick', wood[6], 'mcl_core:stick'},
{'mcl_core:stick', wood[6], 'mcl_core:stick'},
}
})
end