mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-19 01:21:05 +01:00
Fix wooden fence and fence gate non-craftable
This commit is contained in:
parent
66829c91c3
commit
b83f0e7175
1 changed files with 4 additions and 4 deletions
|
@ -267,15 +267,15 @@ for w=1, #woods do
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'mcl_fences:'..id..' 3',
|
output = 'mcl_fences:'..id..' 3',
|
||||||
recipe = {
|
recipe = {
|
||||||
{wood[5], 'mcl_core:stick', wood[5]},
|
{wood[6], 'mcl_core:stick', wood[6]},
|
||||||
{wood[5], 'mcl_core:stick', wood[5]},
|
{wood[6], 'mcl_core:stick', wood[6]},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'mcl_fences:'..id_gate,
|
output = 'mcl_fences:'..id_gate,
|
||||||
recipe = {
|
recipe = {
|
||||||
{'mcl_core:stick', wood[5], 'mcl_core:stick'},
|
{'mcl_core:stick', wood[6], 'mcl_core:stick'},
|
||||||
{'mcl_core:stick', wood[5], 'mcl_core:stick'},
|
{'mcl_core:stick', wood[6], 'mcl_core:stick'},
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue