diff --git a/BGS/Report.cs b/BGS/Report.cs index 479b7a8..55ee73e 100644 --- a/BGS/Report.cs +++ b/BGS/Report.cs @@ -111,7 +111,8 @@ namespace EliteBGS.BGS { var failed = e as MissionFailedEntry; MissionAcceptedEntry accepted = null; if (!acceptedMissions.TryGetValue(failed.MissionID, out accepted)) { - OnLog?.Invoke("Mission failed that wasn't accepted in the given time frame, please adjust start date."); + OnLog?.Invoke("A mission failed which wasn't accepted in the given time frame. " + + "Please adjust start date to when the mission was accepted to include it in the list."); continue; } entry = new MissionFailed(accepted) { Failed = failed, System = current_system };