Exclude TOL_VERSUS from map unlock pass

This commit is contained in:
AJ Martinez 2024-04-25 17:24:20 -07:00
parent 57850c3868
commit 217fe023ef

View file

@ -323,6 +323,8 @@ void f_maps()
{ {
if ((mapheaderinfo[i]->records.mapvisited & GD_MV_SET) == GD_MV_SET) if ((mapheaderinfo[i]->records.mapvisited & GD_MV_SET) == GD_MV_SET)
continue; continue;
if (mapheaderinfo[i]->typeoflevel & TOL_VERSUS)
continue;
mapheaderinfo[i]->records.mapvisited |= GD_MV_SET; mapheaderinfo[i]->records.mapvisited |= GD_MV_SET;
success = true; success = true;
} }