/* * Author: Glowbal * Assign a repair facility. * * Arguments: * 0: The module logic * 1: Synchronized units * 2: Activated * * Return Value: * None * * Example: * [logic] call ace_repair_fnc_moduleAssignRepairFacility * * Public: No */ #include "script_component.hpp" params ["_logic"]; if (!isNull _logic) then { private ["_list", "_setting"]; _list = _logic getVariable ["EnableList", ""]; _setting = _logic getVariable ["role", 0]; [_list, "ACE_isRepairFacility", _setting, true] call EFUNC(common,assignObjectsInList); [synchronizedObjects _logic, "ACE_isRepairFacility", _setting, true] call EFUNC(common,assignObjectsInList); };