make error message clearer

This commit is contained in:
Florian Stinglmayr 2022-01-09 13:11:53 +01:00
parent 33ffd09784
commit 19284d9eb9

View File

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