File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 707707
708708function AIUtil .getWidth (vehicle )
709709 if vehicle .getAIAgentSize then
710+ --- Due to invalid implement ai comfigurations this function call might break the save ...
711+ --- So we try it and except the callstack, as every good vehicle/implement should cause this function to fail ..
710712 local valid , width = CpUtil .try (vehicle .getAIAgentSize , vehicle )
711713 if not valid then
712714 return vehicle .size .width
719721
720722function AIUtil .getLength (vehicle )
721723 if vehicle .getAIAgentSize then
724+ --- Due to invalid implement ai comfigurations these function calls might break the save ...
725+ --- So we try it and except the callstack, as every good vehicle/implement should cause this function to fail ..
722726 local valid = CpUtil .try (vehicle .updateAIAgentAttachments , vehicle )
723727 if not valid then
724728 return vehicle .size .length
You can’t perform that action at this time.
0 commit comments