From dfc49e127b094912b6c1a61f3b731bc28f01ee32 Mon Sep 17 00:00:00 2001 From: Joachim Stolberg Date: Sat, 6 Feb 2021 17:33:21 +0100 Subject: [PATCH] Add TA4 recycle machine --- basic_machines/recycler.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/basic_machines/recycler.lua b/basic_machines/recycler.lua index 5ede924..59271cf 100644 --- a/basic_machines/recycler.lua +++ b/basic_machines/recycler.lua @@ -127,9 +127,7 @@ end local function get_recipe(stack) local name = stack:get_name() local recipe = Recipes[name] - print("get_recipe", name, dump(recipe)) if recipe then - print("get_recipe", stack:get_count(), ItemStack(recipe.output):get_count()) if stack:get_count() >= ItemStack(recipe.output):get_count() then return recipe end @@ -331,7 +329,7 @@ local function collect_recipes() and recipe.output and next(items) then local s = table.concat(items, ", ") - print(string.format("%-36s {%s}", recipe.output, s)) + --print(string.format("%-36s {%s}", recipe.output, s)) Recipes[name] = {output = recipe.output, items = items} end end