Skip to content

Commit 82e8d4e

Browse files
committed
stupid luau compiler missing comma check ...
1 parent cedbcc5 commit 82e8d4e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/ai/controllers/ShovelController.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ function ShovelController:calculateMinimalUnloadingHeight(triggerNode)
189189
local maxHeightObjectHit = 0
190190
for i=self.MIN_TRIGGER_HEIGHT, self.MAX_TRIGGER_HEIGHT, 0.1 do
191191
self.objectWasHit = false
192-
raycastAll(sx, terrainHeight + i, sz, dx, 0, dz, length
192+
raycastAll(sx, terrainHeight + i, sz, dx, 0, dz, length,
193193
"calculateMinimalUnloadingHeightRaycastCallback", self,
194194
self.TRIGGER_HEIGHT_RAYCAST_COLLISION_MASK)
195195
if self.objectWasHit then

0 commit comments

Comments
 (0)