From eee19c8a481a1c7f3f194088c8b09c2069656242 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Mon, 20 May 2024 01:46:15 +0200 Subject: [PATCH] fix(coal-crafter): syntax error + bad import --- coal-crafter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coal-crafter.lua b/coal-crafter.lua index 61056fa..5e694a7 100644 --- a/coal-crafter.lua +++ b/coal-crafter.lua @@ -1,4 +1,4 @@ -local turtleUtils = require('turtle-utils') +local turtleUtils = require('libs/turtle-utils') local WAIT_INVENTORY_TIME = 3 local IDLE_TIME = 10 @@ -41,7 +41,7 @@ local function craft() return craftOk end -local functin dropSelected() +local function dropSelected() turtle.turnLeft() turtle.turnLeft() turtle.drop()