drop the "for $faction" line to save characters

This commit is contained in:
Florian Stinglmayr 2022-11-25 10:33:41 +01:00
parent 411b3606f9
commit 1d04579bb8

View File

@ -32,7 +32,7 @@ public class MissionFormat : LogFormatter {
foreach (var mission in collated) { foreach (var mission in collated) {
if (objective.Faction != null) { if (objective.Faction != null) {
output.AppendFormat("{0} for {1}\n", mission.Key, objective.Faction); output.AppendFormat("{0}\n", mission.Key);
} else { } else {
output.AppendFormat("{0}\n", mission.Key); output.AppendFormat("{0}\n", mission.Key);
} }