From 604088f8a6b00f319628d609411877a8d17406e3 Mon Sep 17 00:00:00 2001 From: mrschick <58027418+mrschick@users.noreply.github.com> Date: Sun, 11 Aug 2024 20:49:43 +0200 Subject: [PATCH] Reduce threshold for more intense moaning --- addons/field_rations/functions/fnc_handleEffects.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/field_rations/functions/fnc_handleEffects.sqf b/addons/field_rations/functions/fnc_handleEffects.sqf index f86ff3f3f3..6fb6468b91 100644 --- a/addons/field_rations/functions/fnc_handleEffects.sqf +++ b/addons/field_rations/functions/fnc_handleEffects.sqf @@ -33,7 +33,7 @@ if ( {(_thirst > 70) || {_hunger > 70}} && {random 1 < linearConversion [70, 100, _thirst max _hunger, 0.05, 0.2, true]} ) then { - [ACE_Player, "moan", round (linearConversion [70, 100, _thirst max _hunger, 0, 1, true])] call EFUNC(medical_feedback,playInjuredSound); + [ACE_Player, "moan", round (linearConversion [70, 90, _thirst max _hunger, 0, 2, true])] call EFUNC(medical_feedback,playInjuredSound); }; // Trigger high thirst/hunger consequence