From 9352a8dbcb807882739aba0a9e8e1460cb59016d Mon Sep 17 00:00:00 2001 From: Michael Braun Date: Sun, 23 Aug 2015 18:38:19 +0200 Subject: [PATCH] Hotfix for missreplaced variable in projectile direction adjustment --- addons/scopes/functions/fnc_firedEH.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/scopes/functions/fnc_firedEH.sqf b/addons/scopes/functions/fnc_firedEH.sqf index 5ede2d2cf8..bb9c37a1af 100644 --- a/addons/scopes/functions/fnc_firedEH.sqf +++ b/addons/scopes/functions/fnc_firedEH.sqf @@ -38,4 +38,4 @@ if (_zeroing isEqualTo [0, 0, 0]) exitWith {}; _zeroing = _zeroing vectorMultiply 0.05625; _zeroing params ["_elevation", "_windage", "_zero"]; -[_projectile, _elevation, _elevation + _zero, 0] call EFUNC(common,changeProjectileDirection); +[_projectile, _windage, _elevation + _zero, 0] call EFUNC(common,changeProjectileDirection);