- Exhumed: Fix Training menu option.

This commit is contained in:
Mitchell Richters 2020-09-27 02:46:11 +10:00
parent 8450369a22
commit 1c90d16aaf

View file

@ -165,7 +165,7 @@ void GameInterface::MenuClosed()
bool GameInterface::StartGame(FNewGameStartup& gs)
{
auto map = FindMapByLevelNum(gs.Episode);
DeferedStartGame(map, 0); // 0 is training, 1 is the regular game - the game does not have skill levels.
DeferedStartGame(map, gs.Skill); // 0 is training, 1 is the regular game - the game does not have skill levels.
return true;
}