mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-28 15:02:01 +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
|
<< BlockingLine
|
||||||
<< pushfactor
|
<< pushfactor
|
||||||
<< Species
|
<< Species
|
||||||
<< Score
|
<< Score;
|
||||||
<< DesignatedTeam
|
if (SaveVersion >= 3113)
|
||||||
<< lastpush << lastbump
|
{
|
||||||
|
arc << DesignatedTeam;
|
||||||
|
}
|
||||||
|
arc << lastpush << lastbump
|
||||||
<< PainThreshold
|
<< PainThreshold
|
||||||
<< DamageFactor
|
<< DamageFactor
|
||||||
<< WeaveIndexXY << WeaveIndexZ
|
<< WeaveIndexXY << WeaveIndexZ
|
||||||
|
|
Loading…
Reference in a new issue