From eacd8e5a497a9566967915e75ffc53a8860bf1e7 Mon Sep 17 00:00:00 2001 From: ulteq Date: Sat, 13 Jun 2015 17:22:45 +0200 Subject: [PATCH] Removed debug output --- addons/hearing/functions/fnc_updateVolume.sqf | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/hearing/functions/fnc_updateVolume.sqf b/addons/hearing/functions/fnc_updateVolume.sqf index b89becf10b..cfec318dc0 100644 --- a/addons/hearing/functions/fnc_updateVolume.sqf +++ b/addons/hearing/functions/fnc_updateVolume.sqf @@ -22,7 +22,6 @@ if !(GVAR(enableCombatDeafness)) exitWith {}; // Check if new noises increase deafness GVAR(newStrength) = (((ACE_player getvariable [QGVAR(dv), 0]) min 20) / 20) ^ 2; -systemChat Str(GVAR(newStrength)); if (GVAR(newStrength) > GVAR(currentDeafness)) then { GVAR(currentDeafness) = GVAR(newStrength); };