diff options
author | Zefram <zefram@fysh.org> | 2014-07-28 13:29:39 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2014-07-28 13:29:39 +0100 |
commit | 60bc80692ba51ad0a7f2391803ee454b18cb7174 (patch) | |
tree | 540d2e6c0c546072ee88047b033e6ea440987dba | |
parent | b0faa708739280d435de149d753a26c9cc45f16f (diff) |
Remove a noisy debugging print
-rw-r--r-- | technic/machines/register/recipes.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/technic/machines/register/recipes.lua b/technic/machines/register/recipes.lua index 1aba96b..28a0275 100644 --- a/technic/machines/register/recipes.lua +++ b/technic/machines/register/recipes.lua @@ -80,7 +80,6 @@ function technic.get_recipe(typename, items) local new_input = {} for i, stack in ipairs(items) do if stack:get_count() < recipe.input[stack:get_name()] then - print(stack:get_name()) return nil else new_input[i] = ItemStack(stack) |