mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8f46ffd8d5
count -> forEach Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
26 lines
468 B
Plaintext
26 lines
468 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: BaerMitUmlaut
|
|
* Equips synched helicopters with a FRIES.
|
|
*
|
|
* Arguments:
|
|
* 0: Module <LOGIC>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_module] call ace_fastroping_fnc_moduleEquipFRIES
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_module"];
|
|
|
|
private _synchedUnits = synchronizedObjects _module;
|
|
{
|
|
if (_x isKindOf "CAManBase") then {
|
|
_x = vehicle _x;
|
|
};
|
|
[_x] call FUNC(equipFRIES);
|
|
} forEach _synchedUnits;
|