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); } }