From 25d22b2b42dbae61c7b951b2633e5e664c4b8000 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 9 Nov 2007 08:21:15 +0000 Subject: [PATCH] Check to prevent Ratpouch saying 'Excuse me' redundantly svn-id: r29458 --- engines/lure/res_struct.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engines/lure/res_struct.cpp b/engines/lure/res_struct.cpp index d16ff22caa0..6dd121e90ee 100644 --- a/engines/lure/res_struct.cpp +++ b/engines/lure/res_struct.cpp @@ -1117,7 +1117,8 @@ int PausedCharacterList::check(uint16 charId, int numImpinging, uint16 *impingin if ((charHotspot->characterMode() == CHARMODE_PAUSED) || ((charHotspot->pauseCtr() == 0) && (charHotspot->characterMode() == CHARMODE_NONE))) { - hotspot->resource()->scriptHotspotId = charId; + if (hotspot->characterMode() != CHARMODE_WAIT_FOR_INTERACT) + hotspot->resource()->scriptHotspotId = charId; } hotspot->setPauseCtr(IDLE_COUNTDOWN_SIZE);