diff --git a/addons/medical/functions/fnc_displayPatientInformation.sqf b/addons/medical/functions/fnc_displayPatientInformation.sqf index e9bb845de4..2e5a54ee76 100644 --- a/addons/medical/functions/fnc_displayPatientInformation.sqf +++ b/addons/medical/functions/fnc_displayPatientInformation.sqf @@ -106,6 +106,17 @@ if (_show == 1) then { } else { _allInjuryTexts pushBack [format["Partial %1", _woundDescription], [1,1,1,1]]; }; + } else { + if (!EGVAR(medical,advancedBandages) || {!EGVAR(medical,woundReopening)}) then { + private _className = (EGVAR(medical_damage,woundsData) select _woundClassID) select 6; + private _postfix = ["Minor", "Medium", "Large"] select _category; + private _woundDescription = localize format [ELSTRING(medical_damage,%1_%2), _className, _postfix]; + if (_amountOf >= 1) then { + _allInjuryTexts pushBack [format ["[B] %2x %1", _woundDescription, ceil _amountOf], [0.7,0.7,0.7,1]]; + } else { + _allInjuryTexts pushBack [format ["[B] Partial %1", _woundDescription], [0.7,0.7,0.7,1]]; + }; + }; }; }; } forEach (_target getVariable [QEGVAR(medical,openWounds), []]); diff --git a/addons/medical_menu/functions/fnc_updateUIInfo.sqf b/addons/medical_menu/functions/fnc_updateUIInfo.sqf index ba6b2d0424..8c58428ba1 100644 --- a/addons/medical_menu/functions/fnc_updateUIInfo.sqf +++ b/addons/medical_menu/functions/fnc_updateUIInfo.sqf @@ -84,6 +84,17 @@ private _allInjuryTexts = []; } else { _allInjuryTexts pushBack [format["Partial %1", _woundDescription], [1,1,1,1]]; }; + } else { + if (!EGVAR(medical,advancedBandages) || {!EGVAR(medical,woundReopening)}) then { + private _className = (EGVAR(medical_damage,woundsData) select _woundClassID) select 6; + private _postfix = ["Minor", "Medium", "Large"] select _category; + private _woundDescription = localize format [ELSTRING(medical_damage,%1_%2), _className, _postfix]; + if (_amountOf >= 1) then { + _allInjuryTexts pushBack [format ["[B] %2x %1", _woundDescription, ceil _amountOf], [0.7,0.7,0.7,1]]; + } else { + _allInjuryTexts pushBack [format ["[B] Partial %1", _woundDescription], [0.7,0.7,0.7,1]]; + }; + }; }; }; } forEach (_target getVariable [QEGVAR(medical,openWounds), []]);