Merge pull request #3 from lordcirth/master

Added crafting recipes for digiline and lcd.
This commit is contained in:
Florian Euchner 2014-11-19 18:59:52 +01:00
commit 1bb2230163
2 changed files with 18 additions and 0 deletions

View File

@ -14,3 +14,12 @@ function digiline:receptor_send(pos, rules, channel, msg)
end
end
end
minetest.register_craft({
output = 'digilines:wire_std_00000000 2',
recipe = {
{'mesecons_materials:fiber', 'mesecons_materials:fiber', 'mesecons_materials:fiber'},
{'mesecons_insulated:insulated_off', 'mesecons_insulated:insulated_off', 'default:gold_ingot'},
{'mesecons_materials:fiber', 'mesecons_materials:fiber', 'mesecons_materials:fiber'},
}
})

View File

@ -214,3 +214,12 @@ generate_line = function(s, ypos)
end
return texture
end
minetest.register_craft({
output = "digilines_lcd:lcd 2",
recipe = {
{"default:steel_ingot", "digilines:wire_std_00000000", "default:steel_ingot"},
{"mesecons_lightstone:lightstone_green_off","mesecons_lightstone:lightstone_green_off","mesecons_lightstone:lightstone_green_off"},
{"default:glass","default:glass","default:glass"}
}
})