From d8ed6d3af41051c2d5a7fe3f71bc0005aa0fd39e Mon Sep 17 00:00:00 2001 From: 12Me21 <12Me21.mc@gmail.com> Date: Sat, 15 Sep 2018 10:30:13 -0400 Subject: Tubes now update their connections when rotated with the screwdriver. --- routing_tubes.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'routing_tubes.lua') diff --git a/routing_tubes.lua b/routing_tubes.lua index ba9e0aa..e2f1af4 100644 --- a/routing_tubes.lua +++ b/routing_tubes.lua @@ -161,6 +161,7 @@ if pipeworks.enable_one_way_tube then }, after_place_node = pipeworks.after_place, after_dig_node = pipeworks.after_dig, + on_rotate = pipeworks.on_rotate, }) minetest.register_craft({ output = "pipeworks:one_way_tube 2", -- cgit v1.2.3 From d7dfd11364f6fe2c3819e93324a95e53aa7ce1ac Mon Sep 17 00:00:00 2001 From: Vanessa Dannenberg Date: Tue, 30 Oct 2018 20:45:48 -0400 Subject: use basic_materials mod where possible --- routing_tubes.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'routing_tubes.lua') diff --git a/routing_tubes.lua b/routing_tubes.lua index e2f1af4..45fcea8 100644 --- a/routing_tubes.lua +++ b/routing_tubes.lua @@ -4,9 +4,9 @@ pipeworks.register_tube("pipeworks:tube", "Pneumatic tube segment") minetest.register_craft( { output = "pipeworks:tube_1 6", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, { "", "", "" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) @@ -82,9 +82,9 @@ if pipeworks.enable_priority_tube then minetest.register_craft( { output = "pipeworks:priority_tube_1 6", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, { "default:gold_ingot", "", "default:gold_ingot" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) end @@ -107,9 +107,9 @@ if pipeworks.enable_accelerator_tube then minetest.register_craft( { output = "pipeworks:accelerator_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" }, { "default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) end @@ -166,9 +166,9 @@ if pipeworks.enable_one_way_tube then minetest.register_craft({ output = "pipeworks:one_way_tube 2", recipe = { - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" }, - { "group:stick", "default:mese_crystal", "homedecor:plastic_sheeting" }, - { "homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting" } + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" }, + { "group:stick", "default:mese_crystal", "basic_materials:plastic_sheet" }, + { "basic_materials:plastic_sheet", "basic_materials:plastic_sheet", "basic_materials:plastic_sheet" } }, }) end -- cgit v1.2.3