mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-02-18 11:34:59 +01:00
Fix chest boat crafting recipe
This commit is contained in:
parent
6b77163162
commit
eef47e508b
1 changed files with 16 additions and 7 deletions
|
@ -504,6 +504,14 @@ for b=1, #boat_ids do
|
||||||
})
|
})
|
||||||
|
|
||||||
local c = craftstuffs[b]
|
local c = craftstuffs[b]
|
||||||
|
if not itemstring:find("chest") then
|
||||||
|
minetest.register_craft({
|
||||||
|
output = itemstring:gsub(":boat",":chest_boat"),
|
||||||
|
recipe = {
|
||||||
|
{"mcl_chests:chest"},
|
||||||
|
{itemstring},
|
||||||
|
},
|
||||||
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = itemstring,
|
output = itemstring,
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -511,6 +519,7 @@ for b=1, #boat_ids do
|
||||||
{c, c, c},
|
{c, c, c},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
|
Loading…
Reference in a new issue