make placement of colons consistent

This commit is contained in:
Florian Stinglmayr 2024-05-02 20:26:14 +02:00
parent 03621721b8
commit 0203008202

View File

@ -121,7 +121,7 @@ public class DiscordLogGenerator {
}
log.AppendFormat("**Target:** {0}\n", location);
if (!string.IsNullOrEmpty(summary)) {
log.AppendFormat("**Summary**: {0}\n", summary);
log.AppendFormat("**Summary:** {0}\n", summary);
}
if (legacycount > 0) {
log.AppendFormat("**Warning:** Some actions were performed on ED Legacy\n");
@ -151,7 +151,7 @@ public class DiscordLogGenerator {
protected virtual string BotHeader() {
var sb = new StringBuilder();
sb.AppendFormat("**Bot-Header**: {0}; {1}\n", GetToolVersion(), this.Name);
sb.AppendFormat("**Bot-Header:** {0}; {1}\n", GetToolVersion(), this.Name);
return sb.ToString();
}