From 6e2d14171377167d734a7f66856208d1945ac050 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Sun, 22 May 2022 18:04:23 -0500 Subject: [PATCH] fix issue with VPN banlist evaluation --- Plugins/ScriptPlugins/VPNDetection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/ScriptPlugins/VPNDetection.js b/Plugins/ScriptPlugins/VPNDetection.js index 2a47683a..d6c7f605 100644 --- a/Plugins/ScriptPlugins/VPNDetection.js +++ b/Plugins/ScriptPlugins/VPNDetection.js @@ -29,7 +29,7 @@ const plugin = { let exempt = false; // prevent players that are exempt from being kicked vpnExceptionIds.forEach(function (id) { - if (id === origin.ClientId) { + if (id == origin.ClientId) { // when loaded from the config the "id" type is not the same as the ClientId type exempt = true; return false; }