Skip to content

Commit

Permalink
Use toString instead of QUOTE
Browse files Browse the repository at this point in the history
  • Loading branch information
DartRuffian committed Oct 14, 2024
1 parent 48bcb6d commit 4f96bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/arsenal/functions/fnc_scanConfig.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ private _magazineMiscItems = createHashMap;

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

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

0 comments on commit 4f96bf9

Please sign in to comment.