From ef9db276b3c060904fe19bb7a0f3764e89e2864e Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 22 Feb 2008 21:37:28 +0000 Subject: [PATCH] - Fixed: DCorpsePointer::Serialize didn't call the super method. SVN r764 (trunk) --- src/g_shared/a_action.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/g_shared/a_action.cpp b/src/g_shared/a_action.cpp index 8566b914a..e708e5a33 100644 --- a/src/g_shared/a_action.cpp +++ b/src/g_shared/a_action.cpp @@ -409,6 +409,7 @@ void DCorpsePointer::Destroy () void DCorpsePointer::Serialize (FArchive &arc) { + Super::Serialize(arc); arc << Corpse << Count; }