From ce5f423653ea42693bc575f9708ec7c8901887c1 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Sat, 29 Jan 2022 10:49:49 +0100 Subject: [PATCH] be very strict with matching objectives --- BGS/Report.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BGS/Report.cs b/BGS/Report.cs index c9f5f13..2dad427 100644 --- a/BGS/Report.cs +++ b/BGS/Report.cs @@ -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)) ;