ACE3/addons/repair/functions/fnc_moduleAddSpareParts.sqf
johnb432 8f46ffd8d5
General - Change count to forEach where appropriate (#9890)
count -> forEach

Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
2024-04-04 08:15:26 -03:00

44 lines
931 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Jonpas
* Adds spare parts to a vehicle.
*
* Arguments:
* 0: The module logic <OBJECT>
* 1: Synchronized units <ARRAY>
* 2: Activated <BOOL>
*
* Return Value:
* None
*
* Example:
* [logic] call ace_repair_fnc_moduleAddSpareParts
*
* Public: No
*/
params ["_logic"];
if (!isNull _logic) then {
private _list = _logic getVariable ["List", ""];
private _part = _logic getVariable ["Part", 0];
private _amount = _logic getVariable ["Amount", 1];
// Parse list
_list = [_list, true, true] call EFUNC(common,parseList);
// Add synchronized objects to list
{
_list pushBack _x;
} forEach (synchronizedObjects _logic);
if (_list isEqualTo []) exitWith {};
TRACE_3("Module info parsed",_list,_part,_amount);
// Add spare parts
{
[_x, _amount, _part, true] call FUNC(addSpareParts);
} forEach _list;
};