From b2ba4b272d3c189d7781ab9b298be0cd7be4477a Mon Sep 17 00:00:00 2001 From: kepler155c Date: Sun, 4 Mar 2018 13:12:14 -0500 Subject: [PATCH] autocrafting count fix --- apps/chestManager.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/chestManager.lua b/apps/chestManager.lua index c686759..6826511 100644 --- a/apps/chestManager.lua +++ b/apps/chestManager.lua @@ -552,8 +552,8 @@ local function getAutocraftItems() local craftList = { } for _,res in pairs(resources) do - if res.auto then + res = Util.shallowCopy(res) res.count = 256 -- this could be higher to increase autocrafting speed local key = uniqueKey(res) craftList[key] = res