From 156c9ddfd8f6dd68d60ad073625e8c4e3fe21eec 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 b5565e7e..ff33e991 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; }