From 3f137d357d58b2396ea04846d5451b74cb92932a Mon Sep 17 00:00:00 2001 From: PabstMirror Date: Thu, 26 Mar 2015 15:05:50 -0500 Subject: [PATCH] Medical - carryObj func moved --- addons/medical/functions/fnc_setUnconscious.sqf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/addons/medical/functions/fnc_setUnconscious.sqf b/addons/medical/functions/fnc_setUnconscious.sqf index 9ea9acd7c3..d1a64f9e47 100644 --- a/addons/medical/functions/fnc_setUnconscious.sqf +++ b/addons/medical/functions/fnc_setUnconscious.sqf @@ -29,7 +29,9 @@ if (!local _unit) exitwith { }; // Get rid of the object we are carrying, before we go unconscious. -[_unit, ObjNull, [0,0,0]] call EFUNC(common,carryObj); +if (!isNil QEFUNC(dragging,carryObj)) then { + [_unit, ObjNull, [0,0,0]] call EFUNC(dragging,carryObj); +}; // Set the unit in the unconscious state. _unit setvariable ["ACE_isUnconscious", true, true];