From 8d7ac1f930990115d010bf9bbe2646a66fc6c2f7 Mon Sep 17 00:00:00 2001 From: Glowbal Date: Fri, 3 Apr 2015 20:26:24 +0200 Subject: [PATCH] Added selected bodypart text Changed "No injuries on bodypart" to still display if the generic messages have entries --- addons/medical/functions/fnc_displayPatientInformation.sqf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/addons/medical/functions/fnc_displayPatientInformation.sqf b/addons/medical/functions/fnc_displayPatientInformation.sqf index 40c9bd4bd6..9d49cce011 100644 --- a/addons/medical/functions/fnc_displayPatientInformation.sqf +++ b/addons/medical/functions/fnc_displayPatientInformation.sqf @@ -43,6 +43,10 @@ if (_show) then { _allInjuryTexts = []; _genericMessages = []; + + _partText = ["STR_ACE_Interaction_Head", "STR_ACE_Interaction_Torso", "STR_ACE_Interaction_ArmLeft" ,"STR_ACE_Interaction_ArmRight" ,"STR_ACE_Interaction_LegLeft", "STR_ACE_Interaction_LegRight"] select GVAR(currentSelectedSelectionN); + _genericMessages pushback [localize _partText, [1, 1, 1, 1]]; + if (_target getvariable[QGVAR(isBleeding), false]) then { _genericMessages pushback [localize "STR_ACE_MEDICAL_STATUS_BLEEDING", [1, 0.1, 0.1, 1]]; }; @@ -123,7 +127,7 @@ if (_show) then { { _lbCtrl lbAdd _x; }foreach _allInjuryTexts; - if (count _genericMessages == 0 && {count _allInjuryTexts == 0}) then { + if (count _allInjuryTexts == 0) then { _lbCtrl lbAdd "No injuries on this bodypart.."; };