Archived
1
0

Compare commits

..

No commits in common. "9d7dc7c850f8b650dee1418371ad74ca6516c71b" and "9339eab1455a45d458b9db393e8c05a97ff7cc68" have entirely different histories.

2 changed files with 9 additions and 13 deletions

View File

@ -26,22 +26,19 @@ namespace NonaBGS.BGS {
} }
} }
if (e.System != null && system != null) { if (e.System != null && system != null &&
if (string.Compare(e.System, system, true) == 0) { e.System == system) {
++match_count; ++match_count;
}
} }
if (e.Station != null && station != null) { if (e.Station != null && station != null &&
if (string.Compare(e.Station, station, true) == 0) { e.Station == station) {
++match_count; ++match_count;
}
} }
if (e.Faction != null && faction != null) { if (e.Faction != null && faction != null &&
if (string.Compare(e.Faction, faction, true) == 0) { e.Faction == faction) {
++match_count; ++match_count;
}
} }
return match_count; return match_count;

View File

@ -26,7 +26,6 @@ namespace NonaBGS.Journal {
{ "Mission_Collect_CivilLiberty_name", "Provide (Civil Liberty)" }, { "Mission_Collect_CivilLiberty_name", "Provide (Civil Liberty)" },
{ "Mission_Courier_Democracy_name", "Courier (Democracy)" }, { "Mission_Courier_Democracy_name", "Courier (Democracy)" },
{ "Mission_Courier_Elections_name", "Courier (Elections)" }, { "Mission_Courier_Elections_name", "Courier (Elections)" },
{ "Mission_Courier_Famine_name", "Courier (Famine)" },
{ "Mission_Courier_Lockdown_name", "Courier (Lockdown)" }, { "Mission_Courier_Lockdown_name", "Courier (Lockdown)" },
{ "Mission_Courier_name", "Courier" }, { "Mission_Courier_name", "Courier" },
{ "Mission_Courier_RankEmp_name", "Courier (Empire)" }, { "Mission_Courier_RankEmp_name", "Courier (Empire)" },