From efbbaa8abf128a7b1128e0637cc4ca04e73ce939 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Fri, 16 Dec 2022 21:48:16 +0100 Subject: [PATCH] make system and faction bold --- EliteBGS/OneLineDiscordLog.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/EliteBGS/OneLineDiscordLog.cs b/EliteBGS/OneLineDiscordLog.cs index 35726ff..ab5a7d4 100644 --- a/EliteBGS/OneLineDiscordLog.cs +++ b/EliteBGS/OneLineDiscordLog.cs @@ -1,13 +1,11 @@ -using System.Linq; - -namespace EliteBGS; +namespace EliteBGS; public class OneLineDiscordLog : DiscordLogGenerator { protected override string GenerateObjectiveHeader(Objective objective) { if (!string.IsNullOrEmpty(objective.Faction)) { - return string.Format("{0} for {1}: ", objective.System, objective.Faction); + return string.Format("**{0}** for **{1}**: ", objective.System, objective.Faction); } else { - return string.Format("{0}: ", objective.System); + return string.Format("**{0}**: ", objective.System); } }