- Ensure save games don't break.

This commit is contained in:
MajorCooke 2015-02-20 01:41:59 -06:00
commit 3bf24204d8
2 changed files with 3 additions and 1 deletions

View file

@ -68,6 +68,8 @@ void DEarthquake::Serialize (FArchive &arc)
m_IntensityZ = 0;
m_Flags = 0;
}
if (SaveVersion < 4520)
m_CountdownStart = 0;
else
{
arc << m_IntensityY << m_IntensityZ << m_Flags;