From 3ba5354f8310770c7574402b0cf6661e1d59bd7a Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Sat, 11 Mar 2017 20:02:20 -0500 Subject: [PATCH] add recipes for insulator clips --- extranodes/init.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/extranodes/init.lua b/extranodes/init.lua index 38b7dd9..74fb028 100644 --- a/extranodes/init.lua +++ b/extranodes/init.lua @@ -154,3 +154,20 @@ minetest.register_node(":technic:insulator_clip_fencepost", { place_param2 = 171 -- medium amber, low saturation, closest color to default:wood }) +minetest.register_craft({ + output = "technic:insulator_clip", + recipe = { + { "", "dye:white", ""}, + { "", "technic:raw_latex", ""}, + { "technic:raw_latex", "default:stone", "technic:raw_latex"}, + } +}) + +minetest.register_craft({ + output = "technic:insulator_clip_fencepost 2", + recipe = { + { "", "dye:white", ""}, + { "", "technic:raw_latex", ""}, + { "technic:raw_latex", "default:fence_wood", "technic:raw_latex"}, + } +})