ACE3/TO_MERGE/agm/Logistics/functions/Drag/fn_isCarryable.sqf

11 lines
193 B
Plaintext

// by commy2
private ["_unit", "_target"];
_unit = _this select 0;
_target = _this select 1;
_unit == vehicle _unit &&
{alive _target} &&
{!(_target getVariable ["AGM_disableDrag", false])}