Use machine casing in most machine recipes

This commit is contained in:
Zefram
2014-07-06 17:13:11 +01:00
committed by Novatux
parent 430b310eb4
commit e8a5a6652d
18 changed files with 46 additions and 46 deletions

View File

@ -4,9 +4,9 @@ minetest.register_alias("compressor", "technic:lv_compressor")
minetest.register_craft({
output = 'technic:lv_compressor',
recipe = {
{'default:stone', 'default:stone', 'default:stone'},
{'mesecons:piston', 'technic:motor', 'mesecons:piston'},
{'default:stone', 'technic:lv_cable0', 'default:stone'},
{'default:stone', 'technic:motor', 'default:stone'},
{'mesecons:piston', 'technic:machine_casing', 'mesecons:piston'},
{'default:stone', 'technic:lv_cable0', 'default:stone'},
}
})