Skip to content

Commit

Permalink
Fix magazine misc items not appearing
Browse files Browse the repository at this point in the history
Not fully fixed, as painkillers still show in the misc item tab instead of medical.
  • Loading branch information
DartRuffian committed Oct 15, 2024
1 parent bf3f977 commit 5f3abd3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion addons/arsenal/functions/fnc_scanConfig.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ private _magazineMiscItems = createHashMap;

{
_magazineMiscItems set [configName _x, nil];
} forEach ((toString {(configName _x) call FUNC(isMiscItem)}) configClasses _cfgMagazines);
} forEach ((toString {
with uiNamespace do {
(configName _x) call FUNC(isMiscItem);
};
}) configClasses _cfgMagazines);

// Remove invalid/non-existent entries
_grenadeList deleteAt "";
Expand Down

0 comments on commit 5f3abd3

Please sign in to comment.