Procházet zdrojové kódy

Fix process filter not working as intended

Bepis před 6 roky
rodič
revize
38059a544c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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();