From 7e4bf152abf8deccc67cf47a2552eb3dc923bc3a Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Thu, 2 Jul 2020 23:00:55 +0200 Subject: [PATCH] v0.15 with improvements and bugfixes --- liquids/valve.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/liquids/valve.lua b/liquids/valve.lua index d594667..a2e2a53 100644 --- a/liquids/valve.lua +++ b/liquids/valve.lua @@ -195,10 +195,10 @@ techage.register_node({"techage:ta3_valve_closed", "techage:ta3_valve_open"}, { }) minetest.register_craft({ - output = "techage:ta3_valve_closed", + output = "techage:ta3_valve_open", recipe = { - {"", "", ""}, - {"techage:ta3_pipeS", "techage:iron_ingot", "techage:ta3_pipeS"}, - {"", "", ""}, + {"", "dye:black", ""}, + {"techage:ta3_pipeS", "basic_materials:steel_bar", "techage:ta3_pipeS"}, + {"", "techage:vacuum_tube", ""}, }, })