mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed: next secret map was ignored in ending sequence
https://forum.zdoom.org/viewtopic.php?t=70132
This commit is contained in:
parent
4670819ec8
commit
5ee272a8b9
1 changed files with 1 additions and 1 deletions
|
@ -765,7 +765,7 @@ const char *FLevelLocals::GetSecretExitMap()
|
||||||
|
|
||||||
if (NextSecretMap.Len() > 0)
|
if (NextSecretMap.Len() > 0)
|
||||||
{
|
{
|
||||||
if (P_CheckMapData(NextSecretMap))
|
if (NextSecretMap.Compare("enDSeQ", 6) == 0 || P_CheckMapData(NextSecretMap))
|
||||||
{
|
{
|
||||||
nextmap = NextSecretMap;
|
nextmap = NextSecretMap;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue