fix formatting of failed missions
This commit is contained in:
parent
9795b22e02
commit
87377c086b
@ -66,7 +66,7 @@ namespace EliteBGS.BGS {
|
|||||||
foreach (LogFormatter formatter in formatters) {
|
foreach (LogFormatter formatter in formatters) {
|
||||||
string text = formatter.GenerateLog(objective);
|
string text = formatter.GenerateLog(objective);
|
||||||
if (!string.IsNullOrEmpty(text)) {
|
if (!string.IsNullOrEmpty(text)) {
|
||||||
objlog.AppendFormat("{0}\n", text);
|
objlog.AppendFormat("{0}\n", text.Trim());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,9 +21,7 @@ namespace EliteBGS.BGS.LogGenerator {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
builder.Append("\n");
|
return builder.ToString().Trim();
|
||||||
|
|
||||||
return builder.ToString();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user