crafting recipes

This commit is contained in:
flux
2019-07-06 07:07:07 +01:00
committed by y
parent da9556bd3a
commit 6062d9b08e
4 changed files with 44 additions and 9 deletions

View File

@@ -30,7 +30,7 @@ minetest.register_node("digistuff:noteblock", {
local meta = minetest.get_meta(pos)
if fields.channel then meta:set_string("channel",fields.channel) end
end,
digiline =
digiline =
{
receptor = {},
effector = {
@@ -62,3 +62,12 @@ minetest.register_node("digistuff:noteblock", {
},
},
})
minetest.register_craft({
output = "digistuff:noteblock",
recipe = {
{"mesecons_noteblock:noteblock"},
{"mesecons_luacontroller:luacontroller0000"},
{"digilines:wire_std_00000000"},
},
})