Skip to content

Commit

Permalink
stupid luau compiler missing comma check ...
Browse files Browse the repository at this point in the history
  • Loading branch information
schwiti6190 committed Dec 22, 2024
1 parent cedbcc5 commit 82e8d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ai/controllers/ShovelController.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function ShovelController:calculateMinimalUnloadingHeight(triggerNode)
local maxHeightObjectHit = 0
for i=self.MIN_TRIGGER_HEIGHT, self.MAX_TRIGGER_HEIGHT, 0.1 do
self.objectWasHit = false
raycastAll(sx, terrainHeight + i, sz, dx, 0, dz, length
raycastAll(sx, terrainHeight + i, sz, dx, 0, dz, length,
"calculateMinimalUnloadingHeightRaycastCallback", self,
self.TRIGGER_HEIGHT_RAYCAST_COLLISION_MASK)
if self.objectWasHit then
Expand Down

0 comments on commit 82e8d4e

Please sign in to comment.