This commit is contained in:
Vitaliy 2024-01-25 09:57:31 -07:00 committed by GitHub
commit e5c1837a41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 0 deletions

View File

@ -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},
}
})