mirror of
https://github.com/minetest-mods/mesecons.git
synced 2025-03-14 08:10:43 +01:00
Sticky block: add crafting recipe
This commit is contained in:
parent
f98ea14023
commit
11f4dbf692
@ -19,3 +19,15 @@ minetest.register_node("mesecons_stickyblocks:sticky_block_all", {
|
||||
end,
|
||||
sounds = mesecon.node_sound.wood,
|
||||
})
|
||||
|
||||
local wood = "group:wood"
|
||||
local glue = "mesecons_materials:glue"
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mesecons_stickyblocks:sticky_block_all",
|
||||
recipe = {
|
||||
{glue, glue, glue},
|
||||
{glue, wood, glue},
|
||||
{glue, glue, glue},
|
||||
}
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user