From 3631dfcea114a0be72ac3ad89870406a201d81d6 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Mon, 20 May 2024 02:19:35 +0200 Subject: [PATCH] fix(coal-crafter): reduce NB_NEEDED_COAL threshold --- coal-crafter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coal-crafter.lua b/coal-crafter.lua index 19bd284..ceb03bf 100644 --- a/coal-crafter.lua +++ b/coal-crafter.lua @@ -1,6 +1,6 @@ local turtleUtils = require('libs/turtle-utils') -local NB_NEEDED_COAL = 256 +local NB_NEEDED_COAL = 64 * 2 local WAIT_INVENTORY_TIME = 3 local IDLE_TIME = 30 local IDLE_TIME_ENOUGH_COAL = 120