We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 74336a1 + 7e6a2a8 commit 9dfc680Copy full SHA for 9dfc680
1 file changed
scripts/ai/controllers/BalerController.lua
@@ -45,6 +45,12 @@ function BalerController:update()
45
not self.implement:getConsumableIsAvailable(Baler.CONSUMABLE_TYPE_NAME_SQUARE) then
46
self.vehicle:stopCurrentAIJob(AIMessageErrorOutOfFill.new())
47
end
48
+ if self.implement:getIsAIImplementInLine() and
49
+ not self.implement:getIsTurnedOn() and
50
+ self.implement:getCanBeTurnedOn() then
51
+ -- Cotton harvester are not restarted after unload, so we do it here ...
52
+ self.implement:aiImplementStartLine()
53
+ end
54
55
56
function BalerController:handleBaler()
0 commit comments