diff --git a/changelog.txt b/changelog.txt index 64d09fe..ecaf86d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,7 @@ Fixes: - Made it so Novetus closes any open client process after 1 minute of not showing a window - This should fix issues with older clients staying open in the background after closing. +- Fixed an issue where 2010L kicks players after rejoinibg (RESIGN CLIENT) ---------------------------------------------------------------------------- 1.3 v8.2022.1 Changes from 1.3 v2.2022.1: diff --git a/scripts/game/2010L/CSMPFunctions.lua b/scripts/game/2010L/CSMPFunctions.lua index 1ec60dd..cdab3e7 100644 --- a/scripts/game/2010L/CSMPFunctions.lua +++ b/scripts/game/2010L/CSMPFunctions.lua @@ -45,7 +45,8 @@ function newWaitForChildSecurity(newParent,name) returnable = newParent:FindFirstChild(name) break end - wait() + -- this should fix a rare issue where 2010L kicks players after rejoining. + wait(0.5) loadAttempts = loadAttempts + 1 print("Player '" .. newParent.Name .. "' trying to connect. Number of attempts: "..loadAttempts) end