From 611b763f6847bc7d99218225933afa3095f03eba Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Mon, 1 Jan 2024 17:51:16 -0800 Subject: [PATCH] Fix autocrafting of 64k cells. --- modules/network/autocraft.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/network/autocraft.lua b/modules/network/autocraft.lua index 46c172f..aad04f8 100644 --- a/modules/network/autocraft.lua +++ b/modules/network/autocraft.lua @@ -246,7 +246,7 @@ local function build(net, cpos, inv, name, count, stack, sink, time) -- we can put any leftovers back into the main inventory. -- Even this might be too soon, if we have multiple independent crafts going, we -- need the last one. - if previous_ac_size == 0 then + if previous_ac_size == 0 and false then for i = 1,inv:get_size("ac") do local stack = inv:get_stack("ac", i) if stack:get_count() ~= 0 then