- fixed: APlayerPawn::ViewHeight wasn't stored in savegames.

This commit is contained in:
Christoph Oelckers 2015-12-26 16:17:56 +01:00
commit 1070bd9beb
2 changed files with 5 additions and 1 deletions

View file

@ -566,6 +566,10 @@ void APlayerPawn::Serialize (FArchive &arc)
{
arc << AirCapacity;
}
if (SaveVersion >= 4526)
{
arc << ViewHeight;
}
}
//===========================================================================