1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

reorder list + show name if avail. (same as H3)

This commit is contained in:
Laserlicht
2025-06-22 17:32:47 +02:00
parent bcd95dcde5
commit e58e287be5
2 changed files with 41 additions and 39 deletions

View File

@@ -39,7 +39,7 @@ CreditsScreen::CreditsScreen(Rect rect)
{
if(element[0] != contributorsTask)
contributorsText += "\r\n\r\n{" + LIBRARY->generaltexth->translate("vcmi.credits." + boost::to_lower_copy(element[0])) + ":}\r\n";
contributorsText += (element[2] != "" ? element[2] : element[1]) + "\r\n";
contributorsText += (element[1] != "" ? element[1] : element[2]) + "\r\n";
contributorsTask = element[0];
}