Skip to content

Commit

Permalink
Merge pull request #3197 from jaj22/fix-arsenal-backpack-weapon
Browse files Browse the repository at this point in the history
Fix arsenal backpack weapon attachments code adding the wrong element
  • Loading branch information
Bob-Murphy authored Apr 9, 2024
2 parents e5654d9 + eef763e commit 2a83ae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion A3A/addons/jeroen_arsenal/JNA/fn_arsenal_handleAction.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ _attachmentsContainers = [[],[],[]];
if!(isNil "_weaponAtt")then{

{
_atts = [_x select 1,_x select 2,_x select 3,_x select 5];
_atts = [_x select 1,_x select 2,_x select 3,_x select 6];
_atts = _atts - [""];
_attachments = _attachments + _atts;
} forEach _weaponAtt;
Expand Down

0 comments on commit 2a83ae3

Please sign in to comment.