From b81c0b6921992f5af09832ee17b20c41226f6152 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Mon, 20 May 2024 01:48:14 +0200 Subject: [PATCH] fix(coal-crafter): bad itemName --- coal-crafter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coal-crafter.lua b/coal-crafter.lua index 5e694a7..f5465a8 100644 --- a/coal-crafter.lua +++ b/coal-crafter.lua @@ -3,7 +3,7 @@ local turtleUtils = require('libs/turtle-utils') local WAIT_INVENTORY_TIME = 3 local IDLE_TIME = 10 local MIN_ESSENCE_NEEDED = 8 -local COAL_ESSENCE_NAME = 'mysticalagriculture:essence_coal' +local COAL_ESSENCE_NAME = 'mysticalagriculture:coal_essence' -- the slot of the coal essence is returned local function waitForCoalEssence(inventory)