Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion addons/common/functions/fnc_deserializeObjects.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ private _fnc_deserializeVehicle = {
[_vehicle, "", []] call BIS_fnc_initVehicle;
} else {
_customization params ["_textures", "_animations"];
[_vehicle, _textures, _animations, true] call BIS_fnc_initVehicle;
[{ _this call BIS_fnc_initVehicle; }, [_vehicle, _textures, _animations, true], 1] call cba_fnc_waitAndExecute;

};

{
Expand Down