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 /vacuum_tubes.lua | |
parent | 62a1724635c4dde3bcfb83ae8ac968b102db5989 (diff) | |
parent | f5a60ba407175d07daf69c6955ecb3fcf5b7fa64 (diff) |
Merge branch 'master' of https://github.com/minetest-mods/pipeworks
Diffstat (limited to 'vacuum_tubes.lua')
-rw-r--r-- | vacuum_tubes.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/vacuum_tubes.lua b/vacuum_tubes.lua index d616835..c1e9fe0 100644 --- a/vacuum_tubes.lua +++ b/vacuum_tubes.lua @@ -12,9 +12,9 @@ if pipeworks.enable_sand_tube then minetest.register_craft( { output = "pipeworks:sand_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"}, {"group:sand", "group:sand", "group:sand"}, - {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"} + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet"} }, }) @@ -63,9 +63,9 @@ if pipeworks.enable_mese_sand_tube then minetest.register_craft( { output = "pipeworks:mese_sand_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" }, {"group:sand", "default:mese_crystal", "group:sand" }, - {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + {"basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) |