Skip to content

Commit

Permalink
conform isnil checking: cargo
Browse files Browse the repository at this point in the history
  • Loading branch information
Whigital committed Feb 12, 2020
1 parent 57b411b commit 2688cdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/cargo/functions/fnc_removeCargoItem.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private _continue = if (_item isEqualType objNull) then {
};
} forEach _loaded;

FILTER(_loaded,_x != nil);
FILTER(_loaded,!isNil "_x");
true
};

Expand Down

0 comments on commit 2688cdd

Please sign in to comment.