Update insert.sqf

This should be an isNull check. It should not have the ! in there.
This commit is contained in:
worldwidesorrow
2020-02-12 03:42:33 -06:00
committed by GitHub
parent 9d1f3d2d20
commit 35d917ec6b

View File

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