illuna_aestival: include mesecons_stickyblocks:sticky_block_all recipe from main illuna mod, closes 10

master
Milan 2021-01-27 20:13:35 +01:00
parent e25c904525
commit 9603cb021a
3 changed files with 11 additions and 1 deletions

View File

@ -5,6 +5,7 @@ dofile(path .. "/nodes.lua")
dofile(path .. "/mapgen.lua")
dofile(path .. "/saplings.lua")
dofile(path .. "/commands.lua")
dofile(path .. "/crafting.lua")
dofile(path .. "/player.lua")
dofile(path .. "/hotstone.lua")
dofile(path .. "/register.lua")

View File

@ -0,0 +1,8 @@
minetest.register_craft({
output = 'mesecons_stickyblocks:sticky_block_all',
recipe = {
{"mesecons_materials:glue", "mesecons_materials:glue", ""},
{"mesecons_materials:glue", "mesecons_materials:glue", ""},
{"", "", ""},
},
})

View File

@ -263,4 +263,5 @@ minetest.override_item("nether_mobs:dragon_scale_block", {
minetest.set_node(flame_pos, {name = "nether_mobs:permanent_dragon_fire"})
end
end
})
})