From 35d917ec6bde047263c53eea3e95bd82b4ec2fd3 Mon Sep 17 00:00:00 2001 From: worldwidesorrow Date: Wed, 12 Feb 2020 03:42:33 -0600 Subject: [PATCH] Update insert.sqf This should be an isNull check. It should not have the ! in there. --- SQF/dayz_code/loot/insert.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }; };