fix display of failed missions

This commit is contained in:
Florian Stinglmayr 2022-01-21 20:33:15 +01:00
parent 3e15096dfc
commit ceaf8035e9

View File

@ -37,7 +37,8 @@ namespace EliteBGS.BGS {
}
builder.AppendFormat("{0}x Mission failed: \"{1}\"",
Entries.Count,
// +1 since the other entries are just copies of the one we have in our properties
Entries.Count + 1,
Failed.HumanReadableName != null ? Failed.HumanReadableName : Failed.Name
);