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; return false;
} }
if (AcceptedEntry.Mission.IsRescueMission && // If the mission starts with the name for thargoid war mission
AcceptedEntry.Mission.Name.Contains("Mission_TW_")) { // names, we assume its a system contribution
if (AcceptedEntry.Mission.Name.Contains("Mission_TW_")) {
return true; return true;
} }