summaryrefslogtreecommitdiff
path: root/pipeworks/signal_tubes.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-31 13:38:52 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-10-31 13:38:52 -0400
commit869b40a24d4c0e89b05ae70173c1b7ffd397f9b1 (patch)
treefbd58d1df4384ebae9fb03fac5d9ec6b01bd0967 /pipeworks/signal_tubes.lua
parentf23603a325cfad46e16550521d4409300af40b49 (diff)
downloaddreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar
dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.gz
dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.bz2
dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.tar.xz
dreambuilder_modpack-869b40a24d4c0e89b05ae70173c1b7ffd397f9b1.zip
add basic_materials mod
update homedecor, pipeworks, gloopblocks, signs_lib, stainedglass also updated technic, roads, glooptest, framedglass (they're my forks actually, just until some pending PRs are merged) make default locked chests use basic_materials padlock
Diffstat (limited to 'pipeworks/signal_tubes.lua')
-rw-r--r--pipeworks/signal_tubes.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/pipeworks/signal_tubes.lua b/pipeworks/signal_tubes.lua
index b955a16..7048ebb 100644
--- a/pipeworks/signal_tubes.lua
+++ b/pipeworks/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