diff --git a/SQF/dayz_code/loot/insert.sqf b/SQF/dayz_code/loot/insert.sqf index c0cec3819..de86cbae2 100644 --- a/SQF/dayz_code/loot/insert.sqf +++ b/SQF/dayz_code/loot/insert.sqf @@ -45,7 +45,7 @@ if (!local _unit) exitWith { }; if (_type == Loot_BACKPACK) exitWith { - if (!isNull unitBackpack _unit) then { + if (isNull unitBackpack _unit) then { _unit addBackpack _item; }; };