add warning for empty mission faction
This commit is contained in:
parent
f32f1f7dff
commit
4549413b00
@ -631,6 +631,14 @@ internal class MissionFailedParser : TransactionParserPart {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(mission.Faction)) {
|
||||||
|
transactions.AddIncomplete(new MissionFailed(),
|
||||||
|
"Could not determine for what faction you failed a mission. This happens if the " +
|
||||||
|
"mission acceptance is not within the given time frame.",
|
||||||
|
entry
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
transactions.Add(new MissionFailed(entry) {
|
transactions.Add(new MissionFailed(entry) {
|
||||||
Faction = mission?.Faction,
|
Faction = mission?.Faction,
|
||||||
Mission = mission,
|
Mission = mission,
|
||||||
|
Loading…
Reference in New Issue
Block a user