1
0
mirror of https://github.com/acemod/ACE3.git synced 2024-08-30 18:23:18 +00:00

Fire - Fix macro ()

Update fnc_burnReaction.sqf
This commit is contained in:
Grim 2023-09-09 02:24:41 -04:00 committed by GitHub
parent eaea6f29b8
commit 56e905ab7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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);
};