diff options
author | root <root@linux-forks.de> | 2018-11-14 22:38:42 +0100 |
---|---|---|
committer | root <root@linux-forks.de> | 2018-11-14 22:38:42 +0100 |
commit | 51e89c90bf50dfab3690cffc9ae4d6e1e58d9a0e (patch) | |
tree | e2a42227d3497fce857657d0e42110885dbe5fab /signal_tubes.lua | |
parent | 62a1724635c4dde3bcfb83ae8ac968b102db5989 (diff) | |
parent | f5a60ba407175d07daf69c6955ecb3fcf5b7fa64 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/pipeworks
Diffstat (limited to 'signal_tubes.lua')
-rw-r--r-- | signal_tubes.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/signal_tubes.lua b/signal_tubes.lua index b955a16..7048ebb 100644 --- a/signal_tubes.lua +++ b/signal_tubes.lua @@ -60,9 +60,9 @@ if pipeworks.enable_detector_tube then minetest.register_craft( { output = "pipeworks:detector_tube_off_1 2", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, { "mesecons:mesecon", "mesecons_materials:silicon", "mesecons:mesecon" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) end @@ -110,9 +110,9 @@ if digiline_enabled and pipeworks.enable_digiline_detector_tube then minetest.register_craft( { output = "pipeworks:digiline_detector_tube_1 2", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, { "digilines:wire_std_00000000", "mesecons_materials:silicon", "digilines:wire_std_00000000" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) end |