forked from minetest-mods/technic
Added craftin recipes for pneumatic tubes
This commit is contained in:
parent
d771496210
commit
243028dfd5
|
@ -9,3 +9,12 @@ minetest.register_craftitem( "technic:doped_silicon_wafer", {
|
||||||
inventory_image = "technic_doped_silicon_wafer.png",
|
inventory_image = "technic_doped_silicon_wafer.png",
|
||||||
on_place_on_ground = minetest.craftitem_place_item,
|
on_place_on_ground = minetest.craftitem_place_item,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'pipeworks:tube_000000 8',
|
||||||
|
recipe = {
|
||||||
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
|
{'technic:stainless_steel_ingot', 'default:glass', 'technic:stainless_steel_ingot'},
|
||||||
|
}
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user