From be9c2c10a1522f3469e4406e8b5125b77acb9b74 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Tue, 21 May 2024 17:43:22 +0200 Subject: [PATCH] fix(inferium-harvester): shallow clone of the local plan to avoid errors --- inferium-harvester.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inferium-harvester.lua b/inferium-harvester.lua index e4cd3e8..afe3b53 100644 --- a/inferium-harvester.lua +++ b/inferium-harvester.lua @@ -410,7 +410,7 @@ local function replantProcedure() replantSeeds() end - localPlan = remotePlan + localPlan = utils.shallowClone(remotePlan) end -- Main procedure