summaryrefslogtreecommitdiff
path: root/technic/crafts.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-16 18:12:21 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2017-06-16 18:12:21 -0400
commit75e0a665ce2a45e1158a427d3f70f854f5f4d5a8 (patch)
tree881209e2c8f7efcbce69482bc3caa19b4828e290 /technic/crafts.lua
parentb8cd2f723c7c9079e631d7a4078862ff47b24915 (diff)
downloaddreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.gz
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.bz2
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.tar.xz
dreambuilder_modpack-75e0a665ce2a45e1158a427d3f70f854f5f4d5a8.zip
Updated several mods for Minetest 0.4.16
castles modpack, areas, biome_lib, blox, boost_cart, plantlife modpack caverealms, coloredwood, concrete, currency, farming redo, home decor, ilights, mesecons, moreores, pipeworks, signs_lib, technic, unified inventory unified bricks, unified dyes, worldedit, and xban2
Diffstat (limited to 'technic/crafts.lua')
-rw-r--r--technic/crafts.lua48
1 files changed, 26 insertions, 22 deletions
diff --git a/technic/crafts.lua b/technic/crafts.lua
index 9e07978..14bafd3 100644
--- a/technic/crafts.lua
+++ b/technic/crafts.lua
@@ -9,34 +9,38 @@ minetest.clear_craft({
})
-- Accelerator tube
-minetest.clear_craft({
- output = "pipeworks:accelerator_tube_1",
-})
+if pipeworks.enable_accelerator_tube then
+ minetest.clear_craft({
+ output = "pipeworks:accelerator_tube_1",
+ })
+
+ minetest.register_craft({
+ output = 'pipeworks:accelerator_tube_1',
+ recipe = {
+ {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
+ }
+ })
+end
-- Teleport tube
-minetest.clear_craft({
- output = "pipeworks:teleport_tube_1",
-})
+if pipeworks.enable_teleport_tube then
+ minetest.clear_craft({
+ output = "pipeworks:teleport_tube_1",
+ })
+
+ minetest.register_craft({
+ output = 'pipeworks:teleport_tube_1',
+ recipe = {
+ {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
+ {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
+ {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
+ }
+ })
+end
-- tubes crafting recipes
minetest.register_craft({
- output = 'pipeworks:accelerator_tube_1',
- recipe = {
- {'technic:copper_coil', 'pipeworks:tube_1', 'technic:copper_coil'},
- }
-})
-
-minetest.register_craft({
- output = 'pipeworks:teleport_tube_1',
- recipe = {
- {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
- {'pipeworks:tube_1', 'technic:control_logic_unit', 'pipeworks:tube_1'},
- {'default:mese_crystal', 'technic:copper_coil', 'default:mese_crystal'},
- }
-})
-
-minetest.register_craft({
output = 'technic:diamond_drill_head',
recipe = {
{'technic:stainless_steel_ingot', 'default:diamond', 'technic:stainless_steel_ingot'},