Zefram
2014-07-03 636b0f20df4fef3eef821c23ccc2f606828f5c6f
technic/machines/register/grinder_recipes.lua
@@ -40,7 +40,7 @@
end
for _, data in pairs(recipes) do
   technic.register_grinder_recipe({input = data[1], output = data[2]})
   technic.register_grinder_recipe({input = {data[1]}, output = data[2]})
end
local function register_dust(name, ingot)
@@ -57,7 +57,7 @@
         recipe = "technic:"..lname.."_dust",
         output = ingot,
      })
      technic.register_grinder_recipe({ input = ingot, output = "technic:"..lname.."_dust 1" })
      technic.register_grinder_recipe({ input = {ingot}, output = "technic:"..lname.."_dust 1" })
   end
end