Fixed: should only display "no injuries" when there are no injuries. Not the other way around

This commit is contained in:
Glowbal 2015-09-05 11:57:41 +02:00
parent 130569c485
commit 85dc59d66c

View File

@ -33,6 +33,6 @@ _amountOfGeneric = count _genericMessages;
_lbCtrl lbSetColor [_forEachIndex + _amountOfGeneric, _color];
} forEach _allInjuryTexts;
if !(_allInjuryTexts isEqualTo []) then {
if (_allInjuryTexts isEqualTo []) then {
_lbCtrl lbAdd localize ELSTRING(medical,NoInjuriesBodypart);
};