From 1460b8feeda6c853f0fc68c165bd71799247f461 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Fri, 20 Aug 2010 19:10:02 +0000 Subject: [PATCH] - fixed: The check for old incompatible savegames with dialogues was wrong. SVN r2562 (trunk) --- src/p_mobj.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_mobj.cpp b/src/p_mobj.cpp index 7b7e25888..4d3af4568 100644 --- a/src/p_mobj.cpp +++ b/src/p_mobj.cpp @@ -370,7 +370,7 @@ void AActor::Serialize (FArchive &arc) int convnum; convnum = arc.ReadCount(); - if (convnum == 0) + if (GetConversation(GetClass()->TypeName) == -1) { Conversation = NULL; ConversationRoot = -1;