From 6a71a04ad9db6e9db3909b0030bef60791715c72 Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Thu, 26 Mar 2015 15:52:30 -0500 Subject: [PATCH] opps --- addons/medical/XEH_respawn.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/medical/XEH_respawn.sqf b/addons/medical/XEH_respawn.sqf index 97a9659931..b2101b1d4e 100644 --- a/addons/medical/XEH_respawn.sqf +++ b/addons/medical/XEH_respawn.sqf @@ -10,6 +10,6 @@ diag_log "running respawn"; [_unit] call FUNC(init); //Reset captive status for respawning unit -if (!_unit getVariable ["ACE_isUnconscious", false]) then { +if (!(_unit getVariable ["ACE_isUnconscious", false])) then { [_unit, QGVAR(unconscious), false] call EFUNC(common,setCaptivityStatus); };