diff --git a/addons/pharma/functions/fnc_treatmentAdvanced_CheckCoag.sqf b/addons/pharma/functions/fnc_treatmentAdvanced_CheckCoag.sqf index 374effac4..771d25a77 100644 --- a/addons/pharma/functions/fnc_treatmentAdvanced_CheckCoag.sqf +++ b/addons/pharma/functions/fnc_treatmentAdvanced_CheckCoag.sqf @@ -29,8 +29,8 @@ private _output = ""; switch (true) do { case (_coagFactors < _slowINR && _coagFactors > _hlowINR): { _output = LLSTRING(CheckCoag_slightly_lowINR)}; case (_coagFactors > _shighINR && _coagFactors < _hhighINR): { _output = LLSTRING(CheckCoag_slightly_aboveINR)}; - case (_coagFactors < _hlowINR): { _output = LLSTRING(CheckCoag_highly_lowINR)}; - case (_coagFactors > _hhighINR): { _output = LLSTRING(CheckCoag_highly_aboveINR)}; + case (_coagFactors <= _hlowINR): { _output = LLSTRING(CheckCoag_highly_lowINR)}; + case (_coagFactors >= _hhighINR): { _output = LLSTRING(CheckCoag_highly_aboveINR)}; default { _output = LLSTRING(CheckCoag_normalINR)}; };