Fire - Fix macro (#9376)

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

View File

@ -19,7 +19,7 @@ if (
_throwWeapon _throwWeapon
&& {GVAR(dropWeapon) > 0} && {GVAR(dropWeapon) > 0}
&& {_unit in _unit && {(currentWeapon _unit) isNotEqualTo ""}} && {_unit in _unit && {(currentWeapon _unit) isNotEqualTo ""}}
&& {!isPlayer _unit || GVAR(dropWeapon >= 2)} && {!isPlayer _unit || GVAR(dropWeapon) >= 2}
) then { ) then {
[_unit] call EFUNC(common,throwWeapon); [_unit] call EFUNC(common,throwWeapon);
}; };