From 0006f7932a338f8c48dfc3311bafb46e86742412 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 22 Nov 2021 20:30:58 -0800 Subject: [PATCH] Remove overly-broad CDS checks --- BurnOutSharp/ProtectionType/CactusDataShield.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/BurnOutSharp/ProtectionType/CactusDataShield.cs b/BurnOutSharp/ProtectionType/CactusDataShield.cs index cc81d5da..4aa025d0 100644 --- a/BurnOutSharp/ProtectionType/CactusDataShield.cs +++ b/BurnOutSharp/ProtectionType/CactusDataShield.cs @@ -67,7 +67,6 @@ namespace BurnOutSharp.ProtectionType new PathMatchSet(new PathMatch("CDSPlayer.app", useEndsWith: true), GetVersion, "Cactus Data Shield"), new PathMatchSet(new PathMatch("PJSTREAM.DLL", useEndsWith: true), GetVersion, "Cactus Data Shield"), new PathMatchSet(new PathMatch("wmmp.exe", useEndsWith: true), GetVersion, "Cactus Data Shield"), - new PathMatchSet(new PathMatch(".cds", useEndsWith: true), GetVersion, "Cactus Data Shield"), }; return MatchUtil.GetAllMatches(files, matchers, any: true); @@ -82,7 +81,6 @@ namespace BurnOutSharp.ProtectionType new PathMatchSet(new PathMatch("CDSPlayer.app", useEndsWith: true), "Cactus Data Shield 200"), new PathMatchSet(new PathMatch("PJSTREAM.DLL", useEndsWith: true), "Cactus Data Shield 200"), new PathMatchSet(new PathMatch("wmmp.exe", useEndsWith: true), "Cactus Data Shield 200"), - new PathMatchSet(new PathMatch(".cds", useEndsWith: true), "Cactus Data Shield 200"), }; return MatchUtil.GetFirstMatch(path, matchers, any: true);