diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-10-12 22:53:30 -0600 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-10-12 22:53:30 -0600 |
commit | d582f106aa4f1be3bda41113a4893c39d35223a7 (patch) | |
tree | 7add8ad141d837b4287bf6a708b5426742d0c5d7 /nodes/recipes.lua | |
parent | 65f5ac8520a286ae062824147c2f0e3b0253c8ff (diff) |
finishing up technic power tap, other misc fixes
Diffstat (limited to 'nodes/recipes.lua')
-rw-r--r-- | nodes/recipes.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/nodes/recipes.lua b/nodes/recipes.lua index 942fa69..87b0945 100644 --- a/nodes/recipes.lua +++ b/nodes/recipes.lua @@ -100,6 +100,15 @@ if minetest.get_modpath("technic") then {"","default:steel_ingot",""} } }) + + minetest.register_craft({ + output = "digtron:power_connector", + recipe = { + {"","technic:hv_cable",""}, + {"technic:hv_cable","digtron:digtron_core","technic:hv_cable"}, + {"","technic:hv_cable",""} + } + }) end minetest.register_craft({ |