-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
In a quest to use the least amount of brackets possible I've run into edgecase where warning for missing brackets would be usesful.
{_radios append [_x, _corpse] call acre_api_fnc_getAllRadiosByType;} forEach _radioTypesToRestore;will forEach _x and ignore the function call so _radios will equal _radioTypesToRestore.
The correct syntax is this:
{_radios append ([_x, _corpse] call acre_api_fnc_getAllRadiosByType);} forEach _radioTypesToRestore;A warning for cases like this would be nice.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels