mirror of
https://github.com/rambo/arma3_missions.git
synced 2024-08-30 16:52:13 +00:00
15 lines
451 B
Plaintext
15 lines
451 B
Plaintext
//diag_log format["getSideActiveTasks called, _this: %1", _this];
|
|
private _side = _this select 0;
|
|
private _returnValue = [];
|
|
|
|
{
|
|
if (!(_x call BIS_fnc_taskCompleted)) then
|
|
{
|
|
[_returnValue, _x] call BIS_fnc_arrayPush;
|
|
};
|
|
// getSideTasks does not work on dedicated server for whatever reason
|
|
//} forEach ([_side] call getSideTasks);
|
|
} forEach taskIds;
|
|
|
|
//diag_log format["getSideActiveTasks returning: %1", _returnValue];
|
|
_returnValue |