Match tournament exclusions with the map cheat

By request
This commit is contained in:
Sally Coolatta 2024-04-26 00:46:44 -04:00
parent 8aa58e3e88
commit 9fdfb714b5

View file

@ -124,6 +124,10 @@ void f_tournament()
{
if ((mapheaderinfo[i]->records.mapvisited & GD_MV_SET) == GD_MV_SET)
continue;
if (mapheaderinfo[i]->typeoflevel & TOL_VERSUS)
continue;
if (!strcmp(mapheaderinfo[i]->lumpname, "RR_HIDDENPALACE"))
continue;
mapheaderinfo[i]->records.mapvisited |= GD_MV_SET;
success = true;
}