Files
MissionTemplate/framework/fbcb2_assets/functions/fn_initClient.sqf
2024-02-06 01:52:25 -08:00

16 lines
460 B
Plaintext

#include "..\script_component.hpp"
if (!hasInterface) exitWith {};
// once the server has published that assets have been gathered and distributed to bases (respawn modules),
// we can update the asset diary on our end using that data
[{missionNamespace getVariable [QGVAR(serverAssetsReady), false]}, {
call FUNC(updateAssetDiary);
}] call CBA_fnc_waitUntilAndExecute;
[
LEVEL_DEBUG,
QUOTE(COMPONENT),
"postInit complete",
[]
] call EFUNC(common,log);