- ensure thar PRINTNAME_LEVEL always uses uppercase.

This commit is contained in:
Christoph Oelckers 2016-02-11 21:45:34 +01:00
parent 158caf78a0
commit c5c4ec83c2

View file

@ -7782,8 +7782,12 @@ scriptwait:
break;
case PRINTNAME_LEVEL:
work += level.MapName;
break;
{
FString uppername = level.MapName;
uppername.ToUpper();
work += uppername;
break;
}
case PRINTNAME_SKILL:
work += G_SkillName();