Skip to content

Commit

Permalink
Fix parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
johnb432 committed Sep 19, 2024
1 parent 354f8b6 commit d02283d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/artillerytables/functions/fnc_adjustFire.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ params ["_gunPos", "_targetPos", "_adjustEast", "_adjustNorth", "_adjustUp", "_m

private _resultPos = [_adjustEast + _targetPos select 0, _adjustNorth + _targetPos select 1, _adjustUp + _targetPos select 2];

private _returns = ["_gunPos", "_resultPos", "_muzzleVelocity", "_highAngle", "_airFriction", "_temperature", "_airDensity", "_windDir", "_windSpeed"] call FUNC(calculateSolution);
private _returns = [_gunPos, _resultPos, _muzzleVelocity, _highAngle, _airFriction, _temperature, _airDensity, _windDir, _windSpeed] call FUNC(calculateSolution);

_returns

0 comments on commit d02283d

Please sign in to comment.