- Added an 'allcheats' CVAR. This will enable all cheats from all

supported games in any game being played.
- Changed Chex Quest DoomEdNum initilization so that all empty slots 
  are filled with Doom actors if they exist.
- Added missing spawn filters to Chex Quest items.


SVN r1191 (trunk)
This commit is contained in:
Christoph Oelckers 2008-09-01 19:45:17 +00:00
commit 9df27c7afd
4 changed files with 49 additions and 2 deletions

View file

@ -251,6 +251,12 @@ void FActorInfo::RegisterIDs ()
DoomEdMap.AddType (DoomEdNum, Class);
}
}
// Fill out the list for Chex Quest with Doom's actors
if (gameinfo.gametype == GAME_Chex && DoomEdMap.FindType(DoomEdNum) == NULL &&
(GameFilter & GAME_Doom))
{
DoomEdMap.AddType (DoomEdNum, Class);
}
}
//==========================================================================