diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:54:58 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:54:58 -0700 |
commit | 4b5eb1b865108207c7fcd04e34e249583be1b711 (patch) | |
tree | d778087959c63bf379cedced8b9dc5cb8e5c3de3 | |
parent | 4c44a1e73117a16f3bed96e0ba715649d74c89fa (diff) |
quick tweak of one of the structural panel recipes to make it less likely to accidentally turn into a soft digger
-rw-r--r-- | recipes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes.lua b/recipes.lua index 827e2f5..141ebf2 100644 --- a/recipes.lua +++ b/recipes.lua @@ -135,8 +135,8 @@ minetest.register_craft({ output = "digtron:corner_panel", recipe = { {"","",""}, - {"default:steel_ingot","digtron:digtron_core","default:steel_ingot"}, - {"","default:steel_ingot",""} + {"","digtron:digtron_core","default:steel_ingot"}, + {"","default:steel_ingot","default:steel_ingot"} } }) |