Skip to content

Commit

Permalink
add a delay before checking ranked status
Browse files Browse the repository at this point in the history
  • Loading branch information
GenZmeY committed Sep 11, 2023
1 parent 330322d commit d3827c9
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions SML/Classes/SafeMutLoader.uc
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,21 @@ public function PreBeginPlay()

public function PostBeginPlay()
{
local KFGI_Access KFGIA;

`Log_Trace();

Super.PostBeginPlay();

RestoreServerActors();

SetTimer(2.0f, false, nameof(CheckStatus));
}

private function CheckStatus()
{
local KFGI_Access KFGIA;

`Log_Trace();

KFGIA = GetKFGIA();
if (KFGIA == None)
{
Expand Down

0 comments on commit d3827c9

Please sign in to comment.