Skip to content

Commit

Permalink
Increased wait for discharge timer
Browse files Browse the repository at this point in the history
  • Loading branch information
schwiti6190 committed Dec 12, 2024
1 parent 6f40c42 commit b61508d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ai/controllers/TrailerController.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function TrailerController:update(dt)
--- Update discharge timer
local fillLevel = self.implement:getFillUnitFillLevelPercentage(self.dischargeData.dischargeNode)
if fillLevel ~= self.dischargeData.lastFillLevel then
self.isDischargingTimer:set(true, 500)
self.isDischargingTimer:set(true, 10000)
end
self.dischargeData.lastFillLevel = fillLevel
if not self:isDischarging() then
Expand Down

0 comments on commit b61508d

Please sign in to comment.