1
0
mirror of https://github.com/minetest-mods/mesecons.git synced 2025-04-04 19:30:23 +02:00

Add new crafting recipe for mesecons: Cook a mese crystal

This commit is contained in:
Jeija 2012-12-21 16:19:38 +01:00
parent f6ef7b005d
commit 973a9c650f

@ -292,6 +292,12 @@ minetest.register_craft({
}
})
minetest.register_craft({
type = "cooking",
output = '"mesecons:wire_00000000_off" 16',
recipe = "default:mese_crystal",
})
minetest.register_abm(
{nodenames = {"mesecons:mesecon_off", "mesecons:mesecon_on"},
interval = 2,