diff options
author | FaceDeer <FaceDeer@users.noreply.github.com> | 2017-10-12 23:09:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-12 23:09:21 -0600 |
commit | f3c931ce95fd1a9f31f318b3018637db18950707 (patch) | |
tree | 11946936b922c9789ebb7ce58330cea857fc7d01 /nodes/recipes.lua | |
parent | a44f517a4e17314adf3e6895d95a1f90096df026 (diff) | |
parent | 1aa88e526437aeffc4ca846fa7039d1a22225ad0 (diff) |
Merge pull request #13 from minetest-mods/more_technic
More technic
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({ |