diff --git a/Plugins/ScriptPlugins/VPNDetection.js b/Plugins/ScriptPlugins/VPNDetection.js index 2a47683a8..d6c7f605e 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; }