add a delay before checking ranked status
This commit is contained in:
parent
330322dfa0
commit
d3827c9e5a
@ -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)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user