Skip to content

Commit b335209

Browse files
Changed viariable tagGear to tagItems
1 parent b1dda73 commit b335209

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cScripts/functions/systems/fn_getArsenalWhitelist.sqf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private _companyItems = switch (_company) do {
3737
};
3838

3939

40-
private _tagGear = [];
40+
private _tagItems = [];
4141
{
4242
private _tag = switch (_x) do {
4343
case "role_officer": {GET_CONTAINER_KEYS("arsenal_role_officer");};
@@ -55,7 +55,7 @@ private _tagGear = [];
5555
case "tag_doctor": {GET_CONTAINER_KEYS("arsenal_tag_doctor");};
5656
default {[]};
5757
};
58-
_tagGear append _x;
58+
_tagItems append _x;
5959
} forEach [player] call EFUNC(gear,getLoadoutRole) ;
6060

6161

@@ -97,6 +97,6 @@ private _launcherSpecific = switch (true) do {
9797
default {[]};
9898
};
9999

100-
private _whitelist = _commonGear + _unitItems + _companyItems + _tagGear + _primarySpecific + _handgunSpecific + _launcherSpecific;
100+
private _whitelist = _commonGear + _unitItems + _companyItems + _tagItems + _primarySpecific + _handgunSpecific + _launcherSpecific;
101101

102102
_whitelist

0 commit comments

Comments
 (0)