- Added a PainThreshold actor property.

SVN r1900 (trunk)
This commit is contained in:
Christoph Oelckers 2009-10-08 17:43:50 +00:00
commit 0c2288a010
5 changed files with 54 additions and 32 deletions

View file

@ -301,6 +301,11 @@ void AActor::Serialize (FArchive &arc)
<< Score
<< Tag;
if (SaveVersion >= 1900)
{
arc << PainThreshold;
}
for(int i=0; i<10; i++) arc << uservar[i];
if (arc.IsStoring ())