Prechádzať zdrojové kódy

Fix process filter not working as intended

Bepis 6 rokov pred
rodič
commit
38059a544c
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      BepInEx/Chainloader.cs

+ 1 - 1
BepInEx/Chainloader.cs

@@ -72,7 +72,7 @@ namespace BepInEx
 				        if (!filters.Any())
 				            return true;
 
-				        return filters.All(x => x.ProcessName.ToLower().Replace(".exe", "") == currentProcess);
+				        return filters.Any(x => x.ProcessName.ToLower().Replace(".exe", "") == currentProcess);
 				    })
 				    .ToList();