From a0e6f97125405758dcbd5a67b6f1a3bd6bab027b Mon Sep 17 00:00:00 2001 From: dixon13 Date: Fri, 5 Feb 2016 00:32:56 -0700 Subject: [PATCH] Updated condition for ACE_GetOut --- addons/interaction/CfgVehicles.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/interaction/CfgVehicles.hpp b/addons/interaction/CfgVehicles.hpp index 163d1acb52..9b35b41779 100644 --- a/addons/interaction/CfgVehicles.hpp +++ b/addons/interaction/CfgVehicles.hpp @@ -150,7 +150,7 @@ class CfgVehicles { }; class ACE_GetOut { displayName = CSTRING(GetOut); - condition = QUOTE(isNull objectParent _target && [ARR_2(_player,_target)] call DFUNC(canInteractWithCivilian)); + condition = QUOTE(!(isNull objectParent _target) && [ARR_2(_player,_target)] call DFUNC(canInteractWithCivilian)); statement = QUOTE([_target] call EFUNC(common,unloadPerson)); showDisabled = 0; priority = 2.6;