Skip to content

Commit

Permalink
1.2.0 Hotfix 1
Browse files Browse the repository at this point in the history
1.2.0 Hotfix 1 - change || to &&
  • Loading branch information
auQuiksilver committed May 8, 2022
1 parent 40516d2 commit 708d47a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Apex_framework.terrain/code/functions/fn_core.sqf
Expand Up @@ -373,12 +373,8 @@ private _HVT_fn_isStealthy = {
private _c = FALSE;
if (
(
(
((_vehicle animationSourcePhase 'showcamonethull') isEqualTo 1) &&
(((vectorMagnitude (velocity _vehicle)) * 3.6) < 30)
) ||
{(!isEngineOn _vehicle)}
) ||
(((_vehicle animationSourcePhase 'showcamonethull') isEqualTo 1) && (((vectorMagnitude (velocity _vehicle)) * 3.6) < 30)) || (!isEngineOn _vehicle)
) &&
{(!isVehicleRadarOn _vehicle)} &&
{(!isLaserOn _vehicle)} &&
{(!isOnRoad _vehicle)} &&
Expand Down

0 comments on commit 708d47a

Please sign in to comment.