diff options
author | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-30 20:45:48 -0400 |
---|---|---|
committer | Vanessa Dannenberg <vanessa.e.dannenberg@gmail.com> | 2018-10-30 20:45:48 -0400 |
commit | d7dfd11364f6fe2c3819e93324a95e53aa7ce1ac (patch) | |
tree | 889b223de01a52a910ac7daf4a125f09fd8bd670 /sorting_tubes.lua | |
parent | 4c20de48b2b31b37e9898188e28755d5263be42d (diff) |
use basic_materials mod where possible
Diffstat (limited to 'sorting_tubes.lua')
-rw-r--r-- | sorting_tubes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sorting_tubes.lua b/sorting_tubes.lua index e7e918d..76eec32 100644 --- a/sorting_tubes.lua +++ b/sorting_tubes.lua @@ -153,9 +153,9 @@ if pipeworks.enable_mese_tube then minetest.register_craft( { output = "pipeworks:mese_tube_000000 2", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, { "", "default:mese_crystal", "" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) |