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) {
|
||||
string text = formatter.GenerateLog(objective);
|
||||
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();
|
||||
return builder.ToString().Trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user