add local event for mission makers

This commit is contained in:
Brandon Danyluk 2021-05-18 02:42:42 -06:00
parent f825d6ff92
commit 72ca725242

View File

@ -47,6 +47,7 @@ if (_idleLaunchers isNotEqualTo []) then {
if (_projectile distanceSqr _tracker <= _range * _range) exitWith { if (_projectile distanceSqr _tracker <= _range * _range) exitWith {
GVAR(trackingProjectiles) pushBack [_projectile, 0]; GVAR(trackingProjectiles) pushBack [_projectile, 0];
_keep = false; _keep = false;
[QGVAR(projectileInRange), [_projectile, _tracker]] call CBA_fnc_localEvent;
}; };
} forEach GVAR(trackers); } forEach GVAR(trackers);