Compare commits
2 Commits
9339eab145
...
9d7dc7c850
Author | SHA1 | Date | |
---|---|---|---|
9d7dc7c850 | |||
1d4058c514 |
@ -26,19 +26,22 @@ namespace NonaBGS.BGS {
|
||||
}
|
||||
}
|
||||
|
||||
if (e.System != null && system != null &&
|
||||
e.System == system) {
|
||||
++match_count;
|
||||
if (e.System != null && system != null) {
|
||||
if (string.Compare(e.System, system, true) == 0) {
|
||||
++match_count;
|
||||
}
|
||||
}
|
||||
|
||||
if (e.Station != null && station != null &&
|
||||
e.Station == station) {
|
||||
++match_count;
|
||||
if (e.Station != null && station != null) {
|
||||
if (string.Compare(e.Station, station, true) == 0) {
|
||||
++match_count;
|
||||
}
|
||||
}
|
||||
|
||||
if (e.Faction != null && faction != null &&
|
||||
e.Faction == faction) {
|
||||
++match_count;
|
||||
if (e.Faction != null && faction != null) {
|
||||
if (string.Compare(e.Faction, faction, true) == 0) {
|
||||
++match_count;
|
||||
}
|
||||
}
|
||||
|
||||
return match_count;
|
||||
|
@ -26,6 +26,7 @@ namespace NonaBGS.Journal {
|
||||
{ "Mission_Collect_CivilLiberty_name", "Provide (Civil Liberty)" },
|
||||
{ "Mission_Courier_Democracy_name", "Courier (Democracy)" },
|
||||
{ "Mission_Courier_Elections_name", "Courier (Elections)" },
|
||||
{ "Mission_Courier_Famine_name", "Courier (Famine)" },
|
||||
{ "Mission_Courier_Lockdown_name", "Courier (Lockdown)" },
|
||||
{ "Mission_Courier_name", "Courier" },
|
||||
{ "Mission_Courier_RankEmp_name", "Courier (Empire)" },
|
||||
|
Reference in New Issue
Block a user