i broke the whole project but its fine

complete pickup rewrite, idle pawns
This commit is contained in:
Milxnor
2023-05-07 17:34:24 -04:00
parent 5e92f2e90b
commit 3405177d20
51 changed files with 1439 additions and 338 deletions

View File

@@ -243,4 +243,14 @@ void AFortGameStateAthena::OnRep_CurrentPlaylistInfo()
if (OnRep_CurrentPlaylistInfo)
this->ProcessEvent(OnRep_CurrentPlaylistInfo);
}
}
void AFortGameStateAthena::OnRep_PlayersLeft()
{
static auto OnRep_PlayersLeftFn = FindObject<UFunction>("/Script/FortniteGame.FortGameStateAthena.OnRep_PlayersLeft");
if (!OnRep_PlayersLeftFn)
return;
this->ProcessEvent(OnRep_PlayersLeftFn);
}