Update fnc_canDrag.sqf

This commit is contained in:
johnb432 2024-08-28 14:33:16 +02:00
parent a5d047cdc8
commit 5ea5330c70

View File

@ -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}}}
};