From fa75478998d793776a38835de7fa20338e7c1c0a Mon Sep 17 00:00:00 2001 From: RaidMax Date: Fri, 2 Oct 2020 08:09:38 -0500 Subject: [PATCH] fix anticheat detection type logic --- Plugins/Stats/Helpers/StatManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Stats/Helpers/StatManager.cs b/Plugins/Stats/Helpers/StatManager.cs index b5565e7ea..ff33e9910 100644 --- a/Plugins/Stats/Helpers/StatManager.cs +++ b/Plugins/Stats/Helpers/StatManager.cs @@ -633,7 +633,7 @@ namespace IW4MAdmin.Plugins.Stats.Helpers try { - if (detectionTypes[server.EndPoint].Contains(detectionType)) + if (!detectionTypes[server.EndPoint].Contains(detectionType)) { return false; }