be very strict with matching objectives

This commit is contained in:
Florian Stinglmayr 2022-01-29 10:49:49 +01:00
parent e7a1656d2a
commit ce5f423653

View File

@ -264,7 +264,7 @@ namespace EliteBGS.BGS {
/* Find all objectives that generally match.
*/
var matches = objectives
.Where(x => x.Matches(entry) > 0)
.Where(x => x.Matches(entry) >= 3)
.OrderBy(x => x.Matches(entry))
;