From bf009702783b3843ee7c5120a12aa6a945ccb96b Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 2 Feb 2001 20:00:04 +0000 Subject: [PATCH] --- source/game/convo.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/game/convo.cpp b/source/game/convo.cpp index 3ba392e03..28655a493 100644 --- a/source/game/convo.cpp +++ b/source/game/convo.cpp @@ -179,6 +179,9 @@ void CConversation::think(int _frames) if(s_currentState==STATE_JUST_ACTIVATED) { + // Need to make sure that the conversation box isn't rendered on the first frame + // ( ie: before it's had time to think ) or it will still be displaying old info + // from the last time it was up s_currentState=STATE_ACTIVE; } @@ -250,6 +253,7 @@ void CConversation::trigger(FileEquate _feScript) // Found it.. s_currentScript=s_registeredScripts[i]; s_currentState=STATE_JUST_ACTIVATED; + s_currentScript->reset(); return; } }