Skip to content

Commit

Permalink
Merge pull request #11 from chris-gong/issue-10
Browse files Browse the repository at this point in the history
Fixed issue #10 by adding additional return statements to a couple of methods in the GameLiftTutorialGameMode class
  • Loading branch information
chris-gong committed Jul 20, 2020
2 parents 59eb5a5 + 11e471c commit 3d877b7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/GameLiftTutorial/Private/GameLiftTutorialGameMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,7 @@ FString AGameLiftTutorialGameMode::CreateBackfillRequest(FString GameSessionArn,
return "";
}
#endif
return "";
}

bool AGameLiftTutorialGameMode::StopBackfillRequest(FString GameSessionArn, FString MatchmakingConfigurationArn, FString TicketId) {
Expand All @@ -609,4 +610,5 @@ bool AGameLiftTutorialGameMode::StopBackfillRequest(FString GameSessionArn, FStr

return StopMatchBackfillOutcome.IsSuccess();
#endif
return false;
}

0 comments on commit 3d877b7

Please sign in to comment.