Compare commits
2 Commits
94ef8f4cc4
...
41337b8b0b
Author | SHA1 | Date | |
---|---|---|---|
41337b8b0b | |||
8fc177c730 |
@ -61,18 +61,19 @@ namespace EliteBGS.BGS {
|
||||
foreach (Objective objective in objectives) {
|
||||
StringBuilder objlog = new StringBuilder();
|
||||
|
||||
objlog.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
|
||||
log.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
|
||||
|
||||
foreach (LogFormatter formatter in formatters) {
|
||||
string text = formatter.GenerateLog(objective);
|
||||
text = text.Trim();
|
||||
if (!string.IsNullOrEmpty(text)) {
|
||||
objlog.AppendFormat("{0}\n", text.Trim());
|
||||
objlog.AppendFormat("{0}\n\n", text);
|
||||
}
|
||||
}
|
||||
|
||||
objlog.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
|
||||
|
||||
log.AppendFormat("{0}\n", objlog.ToString().Trim());
|
||||
|
||||
log.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
|
||||
}
|
||||
|
||||
log.AppendFormat("{0}\n", GenerateFooter());
|
||||
|
@ -1,5 +1,11 @@
|
||||
# EliteBGS changelog
|
||||
|
||||
## 0.1.0 on 27.02.2022
|
||||
|
||||
* Final release without beta in front of it.
|
||||
* Several new mission names for the XML.
|
||||
* A few small fixes towards the Discord log formatting.
|
||||
|
||||
## 0.1.0-beta14 on 26.02.2022
|
||||
|
||||
* Missions that give out no influence whatsoever apparently exist. Here the strategy
|
||||
|
Loading…
Reference in New Issue
Block a user