diff options
author | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:37:49 -0700 |
---|---|---|
committer | FaceDeer <derksenmobile@gmail.com> | 2017-01-06 19:37:49 -0700 |
commit | 4c44a1e73117a16f3bed96e0ba715649d74c89fa (patch) | |
tree | f4efd05dc15583e6c51e476d1d2b34175efc50f1 | |
parent | 105b8a068f1c0095685cbe375d70f480ee7622c8 (diff) |
fixed recipe bug, can now craft soft diggers again
-rw-r--r-- | recipes.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes.lua b/recipes.lua index 52ebf47..827e2f5 100644 --- a/recipes.lua +++ b/recipes.lua @@ -58,7 +58,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "digtron:sand_digger", + output = "digtron:soft_digger", recipe = { {"","default:steel_ingot",""}, {"default:steel_ingot","digtron:digtron_core","default:steel_ingot"}, @@ -136,7 +136,7 @@ minetest.register_craft({ recipe = { {"","",""}, {"default:steel_ingot","digtron:digtron_core","default:steel_ingot"}, - {"","","default:steel_ingot"} + {"","default:steel_ingot",""} } }) |