chore: remove energySaving mode

This commit is contained in:
Guillaume ARM 2024-05-21 17:42:58 +02:00
parent 8f14f48914
commit f483c41c88
2 changed files with 0 additions and 5 deletions

View File

@ -17,6 +17,5 @@ local DEFAULT_REMOTE_PLAN = {
return {
length = 8,
firstCropZ = 2,
energySaving = false,
defaultRemotePlan = DEFAULT_REMOTE_PLAN
}

View File

@ -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