From 552f9fad615ba5019b8e0a9d1728bb7561ee5cc2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 22 May 2003 13:18:54 +0000 Subject: [PATCH] small V2 doSentence tweak svn-id: r7825 --- scumm/script_v2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index 8001eab6b0d..7d6787d5c5a 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -868,14 +868,14 @@ void Scumm_v2::o2_doSentence() { // Execute the sentence _sentenceNum--; - if (st->verb != 250) { + if (st->verb != 250 && st->verb != 253) { VAR(VAR_ACTIVE_VERB) = st->verb; VAR(VAR_ACTIVE_OBJECT1) = st->objectA; VAR(VAR_ACTIVE_OBJECT2) = st->objectB; runObjectScript(st->objectA, st->verb, false, false, NULL); } else - runObjectScript(st->objectA, 253, false, true, NULL); + runObjectScript(st->objectA, 253, false, (st->verb == 250), NULL); break; case 2: // Print the sentence