Suggestion:
This will allow you to run all instances of the packaged game on 1 computer.
void AMultiplayerCGameMode::JoinLANGame()
{
APlayerController *PC = GetGameInstance()->GetFirstLocalPlayerController();
if (PC)
{
PC->ClientTravel("127.0.0.1", TRAVEL_Absolute);
}
}