Add missing FUNC to FCS key (Rangefinders)

#3160
This commit is contained in:
PabstMirror 2016-01-19 09:02:51 -06:00
parent e083e60e8c
commit 6d6cbec5ef
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
params ["_vehicle", "_turret"];
private _distance = call FUNC(getRange);
call (updateRangeHUD);
call FUNC(updateRangeHUD);
if !(!GVAR(enabled) && FUNC(canUseFCS)) exitWith {};

View File

@ -17,7 +17,7 @@ params ["_vehicle", "_turret", "_distance", ["_showHint", false], ["_playSound",
private _turretConfig = [configFile >> "CfgVehicles" >> typeOf _vehicle, _turret] call EFUNC(common,getTurretConfigPath);
call (updateRangeHUD);
call FUNC(updateRangeHUD);
if (isNil "_distance") then {
_distance = call FUNC(getRange);