Skip to content

Commit

Permalink
Fire - Fix macro (#9376)
Browse files Browse the repository at this point in the history
Update fnc_burnReaction.sqf
  • Loading branch information
LinkIsGrim committed Sep 9, 2023
1 parent eaea6f2 commit 56e905a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/fire/functions/fnc_burnReaction.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if (
_throwWeapon
&& {GVAR(dropWeapon) > 0}
&& {_unit in _unit && {(currentWeapon _unit) isNotEqualTo ""}}
&& {!isPlayer _unit || GVAR(dropWeapon >= 2)}
&& {!isPlayer _unit || GVAR(dropWeapon) >= 2}
) then {
[_unit] call EFUNC(common,throwWeapon);
};
Expand Down

0 comments on commit 56e905a

Please sign in to comment.