From 5d9f08fb6306f48afb9e9a285953eb35ca2fa2e8 Mon Sep 17 00:00:00 2001 From: Alien314 <93859311+Alien314@users.noreply.github.com> Date: Fri, 5 Jun 2026 15:02:51 -0500 Subject: [PATCH] Delay customization for MP sync Textures can fail to sync in MP when this is used. See Problems here: --- addons/common/functions/fnc_deserializeObjects.sqf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/addons/common/functions/fnc_deserializeObjects.sqf b/addons/common/functions/fnc_deserializeObjects.sqf index cbc0e84f7..0894667f2 100644 --- a/addons/common/functions/fnc_deserializeObjects.sqf +++ b/addons/common/functions/fnc_deserializeObjects.sqf @@ -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; + }; {