diff --git a/BurnOutSharp/ProtectionType/StarForce.cs b/BurnOutSharp/ProtectionType/StarForce.cs
index d7a9a369..c88788df 100644
--- a/BurnOutSharp/ProtectionType/StarForce.cs
+++ b/BurnOutSharp/ProtectionType/StarForce.cs
@@ -67,13 +67,16 @@ namespace BurnOutSharp.ProtectionType
///
public ConcurrentQueue CheckDirectoryPath(string path, IEnumerable files)
{
- var matchers = new List
- {
- new PathMatchSet(new PathMatch("protect.dll", useEndsWith: true), "StarForce"),
- new PathMatchSet(new PathMatch("protect.exe", useEndsWith: true), "StarForce"),
- };
+ // These have too high of a chance of over-matching by themselves
+ // var matchers = new List
+ // {
+ // // TODO: Re-consolidate these once path matching is improved
+ // new PathMatchSet(new PathMatch("/protect.dll", useEndsWith: true), "StarForce"),
+ // new PathMatchSet(new PathMatch("/protect.exe", useEndsWith: true), "StarForce"),
+ // };
- return MatchUtil.GetAllMatches(files, matchers, any: false);
+ // return MatchUtil.GetAllMatches(files, matchers, any: false);
+ return null;
}
///