Fix Missing Strings

This commit is contained in:
PabstMirror 2015-06-04 22:51:40 -05:00
parent 04e6acfc6a
commit e01ba64683
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -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]];
};