Compare commits
No commits in common. "41337b8b0b4bc91c9cd56f55bb5cf02ea6a3c3f1" and "94ef8f4cc43864c135589f8dad446feefc404ace" have entirely different histories.
41337b8b0b
...
94ef8f4cc4
@ -61,19 +61,18 @@ namespace EliteBGS.BGS {
|
|||||||
foreach (Objective objective in objectives) {
|
foreach (Objective objective in objectives) {
|
||||||
StringBuilder objlog = new StringBuilder();
|
StringBuilder objlog = new StringBuilder();
|
||||||
|
|
||||||
log.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
|
objlog.AppendFormat("{0}\n", GenerateObjectiveHeader(objective));
|
||||||
|
|
||||||
foreach (LogFormatter formatter in formatters) {
|
foreach (LogFormatter formatter in formatters) {
|
||||||
string text = formatter.GenerateLog(objective);
|
string text = formatter.GenerateLog(objective);
|
||||||
text = text.Trim();
|
|
||||||
if (!string.IsNullOrEmpty(text)) {
|
if (!string.IsNullOrEmpty(text)) {
|
||||||
objlog.AppendFormat("{0}\n\n", text);
|
objlog.AppendFormat("{0}\n", text.Trim());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
log.AppendFormat("{0}\n", objlog.ToString().Trim());
|
objlog.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
|
||||||
|
|
||||||
log.AppendFormat("{0}\n", GenerateObjectiveFooter(objective));
|
log.AppendFormat("{0}\n", objlog.ToString().Trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
log.AppendFormat("{0}\n", GenerateFooter());
|
log.AppendFormat("{0}\n", GenerateFooter());
|
||||||
|
@ -1,11 +1,5 @@
|
|||||||
# EliteBGS changelog
|
# 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
|
## 0.1.0-beta14 on 26.02.2022
|
||||||
|
|
||||||
* Missions that give out no influence whatsoever apparently exist. Here the strategy
|
* Missions that give out no influence whatsoever apparently exist. Here the strategy
|
||||||
|
Loading…
x
Reference in New Issue
Block a user