1 Commits

Author SHA1 Message Date
d3827c9e5a add a delay before checking ranked status 2023-09-11 03:32:30 +03:00

View File

@ -29,14 +29,21 @@ public function PreBeginPlay()
public function PostBeginPlay() public function PostBeginPlay()
{ {
local KFGI_Access KFGIA;
`Log_Trace(); `Log_Trace();
Super.PostBeginPlay(); Super.PostBeginPlay();
RestoreServerActors(); RestoreServerActors();
SetTimer(2.0f, false, nameof(CheckStatus));
}
private function CheckStatus()
{
local KFGI_Access KFGIA;
`Log_Trace();
KFGIA = GetKFGIA(); KFGIA = GetKFGIA();
if (KFGIA == None) if (KFGIA == None)
{ {