Add crafting recipe for the delayer (similar to redstone, but with cobble instead of stone)

This commit is contained in:
Jeija 2012-12-30 09:07:49 +01:00
parent 7e231b99a6
commit 52ddd4bdc9
1 changed files with 8 additions and 0 deletions

View File

@ -178,3 +178,11 @@ minetest.register_node("mesecons_delayer:delayer_on_"..tostring(i), {
}
})
end
minetest.register_craft({
output = "mesecons_delayer:delayer_off_1",
recipe = {
{"mesecons_torch:mesecon_torch_on", "group:mesecon_conductor_craftable", "mesecons_torch:mesecon_torch_on"},
{"default:cobble","default:cobble", "default:cobble"},
}
})