Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addons/arsenal/functions/fnc_onSelChangedLeft.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ switch (GVAR(currentLeftPanel)) do {
};
// Backpack
case IDC_buttonBackpack: {
if (_item == "") then {
if (_item == "" || (not (isClass (configFile >> "CfgVehicles">>_item)))) then {
Comment thread
m1kesk marked this conversation as resolved.
Outdated
removeBackpack GVAR(center);
GVAR(currentItems) set [IDX_CURR_BACKPACK_ITEMS, []];
GVAR(currentItems) set [IDX_CURR_BACKPACK, ""];
Expand Down
Loading