Fixing merge errors

This commit is contained in:
Austin Szema 2023-11-10 23:23:09 -05:00
parent 5ebccf8700
commit 5799cecd53
2 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -7,7 +7,7 @@
AjumpingshipGameMode::AjumpingshipGameMode()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacter"));
static ConstructorHelpers::FClassFinder<APawn> PlayerPawnBPClass(TEXT("/Game/ThirdPerson/Blueprints/BP_ThirdPersonCharacterJoel"));
if (PlayerPawnBPClass.Class != NULL)
{
DefaultPawnClass = PlayerPawnBPClass.Class;