Skip to content

Commit

Permalink
Update fnc_collectActiveActionTree.sqf
Browse files Browse the repository at this point in the history
  • Loading branch information
OverlordZorn committed Dec 9, 2024
1 parent b1eec49 commit 7cb7bde
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ private _player = ACE_player;
if ((_origActionData select 10) isNotEqualTo {}) then {
// It should, so make a copy and pass it to the modifierFunction
_origActionData = +_origActionData;
[_target, ACE_player, _origActionData select 6, _origActionData] call (_origActionData select 10);
private _actionParams = _origActionData select 6;
[_target, ACE_player, _actionParams, _origActionData] call (_origActionData select 10);
};

_origActionData params [
Expand Down

0 comments on commit 7cb7bde

Please sign in to comment.