- Fixed parsing for MustConfirm key in skill parser.

- Converted internal MAPINFOs to new syntax.


SVN r1417 (trunk)
This commit is contained in:
Christoph Oelckers 2009-02-08 19:04:07 +00:00
commit 5aecc8abf5
12 changed files with 2928 additions and 2299 deletions

View file

@ -1777,7 +1777,9 @@ void FMapInfoParser::ParseMapInfo (int lump, level_info_t &gamedefaults)
}
SetLevelNum (levelinfo, levelinfo->levelnum); // Wipe out matching levelnums from other maps.
}
else if (sc.Compare("clusterdef"))
// clusterdef is the old keyword but the new format has enough
// structuring that 'cluster' can be handled, too. The old format does not.
else if (sc.Compare("clusterdef") || (format_type == FMT_New && sc.Compare("cluster")))
{
ParseCluster();
}