- Fixed: Dead players didn't get the MF_CORPSE flag set.

- Fixed: The internal definition of Floor_LowerToNearest had incorrect parameter
  settings.
- Fixed: Heretic's ActivatedTimeBomb had the same spawn ID as the inventory item.
- fixed: Heretic's mace did not have its spawn ID set.


SVN r1052 (trunk)
This commit is contained in:
Christoph Oelckers 2008-06-28 12:24:15 +00:00
commit 0fc5a541b3
8 changed files with 16 additions and 6 deletions

View file

@ -147,7 +147,7 @@ struct FOptionalMapinfoData
FOptionalMapinfoData *Next;
FName identifier;
FOptionalMapinfoData() { Next = NULL; identifier = NAME_None; }
virtual ~FOptionalMapinfoData() = 0;
virtual ~FOptionalMapinfoData() {}
virtual FOptionalMapinfoData *Clone() const = 0;
};