diff --git a/addons/medical/functions/fnc_displayPatientInformation.sqf b/addons/medical/functions/fnc_displayPatientInformation.sqf index 3dd270001a..a203b0e7d6 100644 --- a/addons/medical/functions/fnc_displayPatientInformation.sqf +++ b/addons/medical/functions/fnc_displayPatientInformation.sqf @@ -154,7 +154,7 @@ if (_show == 1) then { private _damage = _selectionDamage select _forEachIndex; if (_damage > 0.1) then { _blue = 0 max (1 - _damage); - _green = _damage min 0.5; + _green = 0.5 max (1 - _damage / 2); }; }; }; diff --git a/addons/medical_menu/functions/fnc_updateBodyImage.sqf b/addons/medical_menu/functions/fnc_updateBodyImage.sqf index b24900190a..d4d5581444 100644 --- a/addons/medical_menu/functions/fnc_updateBodyImage.sqf +++ b/addons/medical_menu/functions/fnc_updateBodyImage.sqf @@ -41,7 +41,7 @@ private _availableSelections = [50, 51, 52, 53, 54, 55]; private _damage = _selectionDamage select _forEachIndex; if (_damage > 0.1) then { _blue = 0 max (1 - _damage); - _green = _damage min 0.5; + _green = 0.5 max (1 - _damage / 2); }; }; };