idk bbruh

This commit is contained in:
Gray
2024-03-19 16:13:37 -04:00
parent 0a9191b854
commit 1ffacdd332
8 changed files with 185 additions and 58 deletions

View File

@@ -3,10 +3,10 @@
#include "reboot.h"
void APlayerController::ServerChangeName(FString& S)
void APlayerController::ServerChangeName(const FString& S)
{
static auto ServerChangeNameFn = FindObject<UFunction>(L"/Script/Engine.PlayerController.ServerChangeName");
this->ProcessEvent(ServerChangeNameFn, &S);
this->ProcessEvent(ServerChangeNameFn, (FString*)&S);
}
void APlayerController::SetPlayerIsWaiting(bool NewValue)