From 04217e96eed6b96112c45fcd9b316fe2ea4fb701 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; }