- Allow CON-based games to have multiplayer episodes filtered from menu.

* Fixes #461.
* Fixes #462.
This commit is contained in:
Mitchell Richters 2021-07-16 22:14:56 +10:00 committed by Christoph Oelckers
parent 593bbe10ef
commit d0e6a7ea29
7 changed files with 49 additions and 0 deletions

View file

@ -949,6 +949,13 @@ int RunGame()
colorset = true;
}
}
if (grp.FileInfo.mpepisodes.Size())
{
for (auto& mpepisode : grp.FileInfo.mpepisodes)
{
gi->AddMultiplayerEpisode(mpepisode);
}
}
}
I_SetIWADInfo();