Skip to content

Commit

Permalink
Cannot get SCONS to work right now��Going to try to rebase onto main …
Browse files Browse the repository at this point in the history
…once Yax finishes the final build
  • Loading branch information
AdozenBABYdogs committed Nov 3, 2023
1 parent 649c347 commit c56c529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/uh60_weapons/functions/fnc_HARMGuidence.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ params ["_projectile", "_ammo"];
*/
if (!_foundTarget) then {
if ((_missileTgtPos # 1) != 0) then {
_target = [_projectile, ((_missileTgtPos # 1)*5.6712818 + 10), (_missileTgtPos # 0)] call vtx_uh60_weapons_fnc_HARMGuidence;
_target = [_projectile, ((_missileTgtPos # 1)*5.6712818 + 10), (_missileTgtPos # 0)] call vtx_uh60_weapons_fnc_getHARMTarget;
if (_target != objNull) then {
_targetPos = getPosASL _target;
} else {
Expand All @@ -54,7 +54,7 @@ params ["_projectile", "_ammo"];
_vecDir = vectorNormalized _vecDir;
_missileTgtPos = [getPosASL _projectile, _vecDir, _projectile, blockey] call ace_laser_fnc_shootRay;
if ((_missileTgtPos # 1) != 0) then {
_target = [_projectile, ((_missileTgtPos # 1)*5.6712818 + 10), (_missileTgtPos # 0)] call vtx_uh60_weapons_fnc_HARMGuidence;
_target = [_projectile, ((_missileTgtPos # 1)*5.6712818 + 10), (_missileTgtPos # 0)] call vtx_uh60_weapons_fnc_getHARMTarget;
if (_target != objNull) then {
_targetPos = getPosASL _target;
} else {
Expand Down

0 comments on commit c56c529

Please sign in to comment.