summaryrefslogtreecommitdiff
path: root/extranodes/init.lua
diff options
context:
space:
mode:
Diffstat (limited to 'extranodes/init.lua')
-rw-r--r--extranodes/init.lua17
1 files changed, 17 insertions, 0 deletions
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"},
+ }
+})