ACE3/addons/core/functions/fn_fixLoweredRifleAnimation.sqf
2015-01-11 10:20:14 -08:00

10 lines
265 B
Plaintext

// by commy2
private "_unit";
_unit = _this select 0;
if (currentWeapon _unit != "" && {currentWeapon _unit == primaryWeapon _unit} && {weaponLowered _unit} && {stance _unit == "STAND"}) then {
[_unit, "amovpercmstpsraswrfldnon", 0] call FUNC(doAnimation);
};