diff --git a/addons/medical/CfgVehicles.hpp b/addons/medical/CfgVehicles.hpp index a098394cbd..ae7beadfda 100644 --- a/addons/medical/CfgVehicles.hpp +++ b/addons/medical/CfgVehicles.hpp @@ -22,7 +22,7 @@ class CfgVehicles { class Arguments { class level { displayName = CSTRING(MedicalSettings_level_DisplayName); - description = CSTRING(MedicalSettings_); + description = CSTRING(MedicalSettings_level_Description); typeName = "NUMBER"; class values { class normal { diff --git a/addons/medical/functions/fnc_displayPatientInformation.sqf b/addons/medical/functions/fnc_displayPatientInformation.sqf index 96b56c57f9..cd61550152 100644 --- a/addons/medical/functions/fnc_displayPatientInformation.sqf +++ b/addons/medical/functions/fnc_displayPatientInformation.sqf @@ -50,7 +50,7 @@ if (_show) then { _genericMessages = []; if (GVAR(level) >= 2) then { - _partText = [LSTRING(Head), LSTRING(Torso), LSTRING(ArmLeft) ,LSTRING(ArmRight) ,LSTRING(LegLeft), LSTRING(LegRight)] select _selectionN; + _partText = [LSTRING(Head), LSTRING(Torso), LSTRING(LeftArm) ,LSTRING(RightArm) ,LSTRING(LeftLeg), LSTRING(RightLeg)] select _selectionN; _genericMessages pushback [localize _partText, [1, 1, 1, 1]]; };