From f483c41c883ff727cc848f02040f5eafce580e00 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Tue, 21 May 2024 17:42:58 +0200 Subject: [PATCH] chore: remove energySaving mode --- config/harvesting.lua | 1 - inferium-harvester.lua | 4 ---- 2 files changed, 5 deletions(-) diff --git a/config/harvesting.lua b/config/harvesting.lua index bd9d875..282c591 100644 --- a/config/harvesting.lua +++ b/config/harvesting.lua @@ -17,6 +17,5 @@ local DEFAULT_REMOTE_PLAN = { return { length = 8, firstCropZ = 2, - energySaving = false, defaultRemotePlan = DEFAULT_REMOTE_PLAN } diff --git a/inferium-harvester.lua b/inferium-harvester.lua index fe82260..e4cd3e8 100644 --- a/inferium-harvester.lua +++ b/inferium-harvester.lua @@ -221,10 +221,6 @@ local function harvestProcedure() turtle.turnLeft() for i=1, config.length, 1 do - if config.energySaving then - harvestDown() - end - if i ~= config.length then forward() end