From 5ea5330c70cd4d37aa57e64d9d7abb77260398cc Mon Sep 17 00:00:00 2001 From: johnb432 <58661205+johnb432@users.noreply.github.com> Date: Wed, 28 Aug 2024 14:33:16 +0200 Subject: [PATCH] Update fnc_canDrag.sqf --- addons/dragging/functions/fnc_canDrag.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/dragging/functions/fnc_canDrag.sqf b/addons/dragging/functions/fnc_canDrag.sqf index 51aa2d8cde..374b0692fc 100644 --- a/addons/dragging/functions/fnc_canDrag.sqf +++ b/addons/dragging/functions/fnc_canDrag.sqf @@ -29,7 +29,7 @@ if !([_unit, _target, ["isNotSwimming"]] call EFUNC(common,canInteractWith)) exi if (_isPerson) exitWith { !_alive || {(isAwake _target) && // not ragdolled if alive - {!(lifeState _target in ["HEALTHY", "INJURED"]) || + {!(_target call EFUNC(common,isAwake)) || {_target getHitPointDamage "HitLegs" >= 0.5}}} };