From 3a46c1266a74408c3f5f7ba2548d3dbc92162842 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 28 Jan 2015 00:42:22 +0100 Subject: [PATCH] allow moving virtual items within the crafting grid --- autocrafter.lua | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/autocrafter.lua b/autocrafter.lua index eab57b9..423eea4 100644 --- a/autocrafter.lua +++ b/autocrafter.lua @@ -247,16 +247,18 @@ minetest.register_node("pipeworks:autocrafter", { stack:set_count(count) if from_list == "recipe" then inv:set_stack(from_list, from_index, ItemStack("")) - after_recipe_change(pos, inv) - return 0 - elseif to_list == "recipe" then - add_virtual_item(inv, to_list, to_index, stack) - after_recipe_change(pos, inv) - return 0 - else - after_inventory_change(pos, inv) - return stack:get_count() end + if to_list == "recipe" then + add_virtual_item(inv, to_list, to_index, stack) + end + + if from_list == "recipe" or to_list == "recipe" then + after_recipe_change(pos, inv) + return 0 + end + + after_inventory_change(pos, inv) + return stack:get_count() end, on_timer = run_autocrafter })