From 4c4b7133befb6b44f8e57e4d2b2a7b15e60a9801 Mon Sep 17 00:00:00 2001 From: SplenectomY Date: Mon, 9 Feb 2015 11:21:08 -0500 Subject: [PATCH] Update object_speak.sqf --- SQF/dayz_code/compile/object_speak.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +};