- Fixed: SKIP_SUPER doesn't work for inventory items so it must be

disabled for them
- Fixed: Chex Quest doesn't have a HELP2 screen so it must not be used
  in the gameinfo.
- Fixed: Default blood color is no longer red so P_DrawSplash2 must
  get it from the gameinfo instead.
- Added new French language texts by DoomKn1ght_.


SVN r1186 (trunk)
This commit is contained in:
Christoph Oelckers 2008-08-29 08:48:51 +00:00
commit 3801b9431a
5 changed files with 943 additions and 10 deletions

View file

@ -816,6 +816,12 @@ static int ParseMorphStyle (FScanner &sc)
//==========================================================================
static void ActorSkipSuper (FScanner &sc, AActor *defaults, Baggage &bag)
{
if (bag.Info->Class->IsDescendantOf(RUNTIME_CLASS(AInventory)))
{
sc.ScriptMessage("'skip_super' in definition of inventory item igmored.\n");
return;
}
memcpy (defaults, GetDefault<AActor>(), sizeof(AActor));
if (bag.DropItemList != NULL)
{