Game Mode specifies the Default Pawn Class.
The Default Pawn is your “body”, is transient.
The Player Controller is your “mind”, persist.
PlayerController class has GetPawn().
AActor* ActorThatOpens = GetWorld()->GetFirstPlayerController()->GetPawn();
(Remember that Pawn is Actor.)