mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 00:21:07 +01:00
add craft
This commit is contained in:
parent
eeb288dca7
commit
2d07f85697
1 changed files with 11 additions and 1 deletions
|
@ -139,3 +139,13 @@ end)
|
|||
minetest.register_on_leaveplayer(function(player)
|
||||
close_barrel(player)
|
||||
end)
|
||||
|
||||
--Minecraft Java Edition craft
|
||||
minetest.register_craft({
|
||||
output = "mcl_barrels:barrel_closed",
|
||||
recipe = {
|
||||
{"group:wood", "group:wood_slab", "group:wood"},
|
||||
{"group:wood", "", "group:wood"},
|
||||
{"group:wood", "group:wood_slab", "group:wood"},
|
||||
}
|
||||
})
|
Loading…
Reference in a new issue