1
0
Fork 0

Fix chest boat crafting recipe

This commit is contained in:
cora 2022-09-24 05:34:06 +02:00
parent 6b77163162
commit eef47e508b
1 changed files with 16 additions and 7 deletions

View File

@ -504,13 +504,22 @@ for b=1, #boat_ids do
})
local c = craftstuffs[b]
minetest.register_craft({
output = itemstring,
recipe = {
{c, "", c},
{c, c, c},
},
})
if not itemstring:find("chest") then
minetest.register_craft({
output = itemstring:gsub(":boat",":chest_boat"),
recipe = {
{"mcl_chests:chest"},
{itemstring},
},
})
minetest.register_craft({
output = itemstring,
recipe = {
{c, "", c},
{c, c, c},
},
})
end
end
minetest.register_craft({