Serialize FriendPlayer

This commit is contained in:
Edward Richardson 2014-07-13 14:32:43 +12:00
parent e691341541
commit e1130b860e
2 changed files with 5 additions and 1 deletions

View File

@ -314,6 +314,10 @@ void AActor::Serialize (FArchive &arc)
arc << PoisonDamageType << PoisonDamageTypeReceived;
}
arc << ConversationRoot << Conversation;
if (SaveVersion >= 4509)
{
arc << FriendPlayer;
}
{
FString tagstr;

View File

@ -76,7 +76,7 @@ const char *GetVersionString();
// Use 4500 as the base git save version, since it's higher than the
// SVN revision ever got.
#define SAVEVER 4508
#define SAVEVER 4509
#define SAVEVERSTRINGIFY2(x) #x
#define SAVEVERSTRINGIFY(x) SAVEVERSTRINGIFY2(x)