Remove breakpoints

This commit is contained in:
Kai Vogelgesang 2020-07-08 13:39:56 +02:00
parent 563ae7dd3c
commit 477007bc59

View File

@ -158,8 +158,6 @@ local state_machine = {
end
turtle.digUp()
if T.state.y == TREE_MAX_Y - 1 then
print("below last log")
breakpoint()
-- we are below the last log, no need to move up
break
end
@ -200,8 +198,6 @@ local state_machine = {
["OUTPUT"] = function()
breakpoint()
greedy_move(OUTPUT_TARGET.x, OUTPUT_TARGET.z, OUTPUT_TARGET.o)
-- Drop all logs
@ -218,8 +214,6 @@ local state_machine = {
["RESUPPLY_SAPS"] = function()
breakpoint()
greedy_move(SAPS_TARGET.x, SAPS_TARGET.z, SAPS_TARGET.o)
turtle.select(SAP_SLOT)
@ -233,8 +227,6 @@ local state_machine = {
["RESUPPLY_FUEL"] = function()
breakpoint()
greedy_move(FUEL_TARGET.x, FUEL_TARGET.z, FUEL_TARGET.o)
if turtle.getFuelLevel() < FUEL_LEVEL_TARGET then