diff --git a/SQF/dayz_code/compile/object_speak.sqf b/SQF/dayz_code/compile/object_speak.sqf index 223552db9..1f6da50c5 100644 --- a/SQF/dayz_code/compile/object_speak.sqf +++ b/SQF/dayz_code/compile/object_speak.sqf @@ -39,7 +39,7 @@ if (count _this > 4) then { }; _isWoman = getText(configFile >> "cfgVehicles" >> (typeOf _unit) >> "TextPlural") == "Women"; -if (_isWoman && (_type in ["scream","panic"])) then { +if (_isWoman && (_type in ["scream","panic","cough"])) then { _type = _type + "_w"; }; @@ -52,4 +52,4 @@ if ((round(random _chance) == _chance) || (_chance == 0)) then { } else { [nil,_unit,rSAY,[_sound, _dis]] call RE; }; -}; \ No newline at end of file +};