Removed superfulous parenthese

Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
This commit is contained in:
lambdatiger 2024-01-17 19:03:19 -06:00 committed by GitHub
parent e5f62c71d2
commit ea15eeaee9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ if (_isSidePlayer) then {
if (!alive _projectile) exitWith {
[_handle] call CBA_fnc_removePerFrameHandler;
};
private _projectileArray = GVAR(dev_trackLines) getOrDefault [(getObjectID _projectile), -1];
private _projectileArray = GVAR(dev_trackLines) getOrDefault [getObjectID _projectile, -1];
if (_projectileArray isEqualType 0) exitWith {};
(_projectileArray#0) pushBack getPosATL _projectile;
},