chore: debug

This commit is contained in:
Guillaume ARM 2024-05-20 19:49:00 +02:00
parent 0f78c1c994
commit 586b656fd7

View File

@ -422,12 +422,16 @@ local function replantProcedure()
if #seedsToRemove > 0 then if #seedsToRemove > 0 then
print('nb seeds to remove: ' .. #seedsToRemove) print('nb seeds to remove: ' .. #seedsToRemove)
removeSeeds(seedsToRemove) removeSeeds(seedsToRemove)
else
print('no seeds to remove')
end end
if #seedsToPlant > 0 then if #seedsToPlant > 0 then
print('nb seeds to plants: ' .. #seedsToPlant) print('nb seeds to plants: ' .. #seedsToPlant)
retrieveSeeds(seedsToPlant) retrieveSeeds(seedsToPlant)
replantSeeds() replantSeeds()
else
print('no seeds to plant')
end end
end end