mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
- Let's not be so quick to break savegame compatibility...
SVN r3116 (trunk)
This commit is contained in:
parent
c22ce824a5
commit
a5fb5c7fb4
1 changed files with 6 additions and 3 deletions
|
@ -299,9 +299,12 @@ void AActor::Serialize (FArchive &arc)
|
|||
<< BlockingLine
|
||||
<< pushfactor
|
||||
<< Species
|
||||
<< Score
|
||||
<< DesignatedTeam
|
||||
<< lastpush << lastbump
|
||||
<< Score;
|
||||
if (SaveVersion >= 3113)
|
||||
{
|
||||
arc << DesignatedTeam;
|
||||
}
|
||||
arc << lastpush << lastbump
|
||||
<< PainThreshold
|
||||
<< DamageFactor
|
||||
<< WeaveIndexXY << WeaveIndexZ
|
||||
|
|
Loading…
Reference in a new issue