count all thargoid war missions as system contributions

This commit is contained in:
Florian Stinglmayr 2022-12-07 23:08:31 +01:00
parent abdaca2524
commit 6f9d3a64ff

View File

@ -51,8 +51,9 @@ public class MissionCompleted : Transaction {
return false;
}
if (AcceptedEntry.Mission.IsRescueMission &&
AcceptedEntry.Mission.Name.Contains("Mission_TW_")) {
// If the mission starts with the name for thargoid war mission
// names, we assume its a system contribution
if (AcceptedEntry.Mission.Name.Contains("Mission_TW_")) {
return true;
}