test 2010l fix

This commit is contained in:
Bitl 2022-08-16 11:48:11 -07:00
parent 07aca75cdc
commit c13e109738
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,7 @@
Fixes: Fixes:
- Made it so Novetus closes any open client process after 1 minute of not showing a window - 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. - 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 1.3 v8.2022.1
Changes from 1.3 v2.2022.1: Changes from 1.3 v2.2022.1:

View File

@ -45,7 +45,8 @@ function newWaitForChildSecurity(newParent,name)
returnable = newParent:FindFirstChild(name) returnable = newParent:FindFirstChild(name)
break break
end end
wait() -- this should fix a rare issue where 2010L kicks players after rejoining.
wait(0.5)
loadAttempts = loadAttempts + 1 loadAttempts = loadAttempts + 1
print("Player '" .. newParent.Name .. "' trying to connect. Number of attempts: "..loadAttempts) print("Player '" .. newParent.Name .. "' trying to connect. Number of attempts: "..loadAttempts)
end end