[Scummvm-cvs-logs] scummvm master -> 1d76659da834d59b7a26c59951f6613d384bd532

dreammaster dreammaster at scummvm.org
Mon Mar 9 01:48:05 CET 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
1d76659da8 MADS: Fix walking behind counter at Sand Bar restaurant


Commit: 1d76659da834d59b7a26c59951f6613d384bd532
    https://github.com/scummvm/scummvm/commit/1d76659da834d59b7a26c59951f6613d384bd532
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-03-08T20:46:40-04:00

Commit Message:
MADS: Fix walking behind counter at Sand Bar restaurant

Changed paths:
    engines/mads/nebular/nebular_scenes5.cpp



diff --git a/engines/mads/nebular/nebular_scenes5.cpp b/engines/mads/nebular/nebular_scenes5.cpp
index 8be5269..7cdc55e 100644
--- a/engines/mads/nebular/nebular_scenes5.cpp
+++ b/engines/mads/nebular/nebular_scenes5.cpp
@@ -2463,7 +2463,9 @@ void Scene512::actions() {
 		_vm->_dialogs->show(51233);
 	else if (_action.isAction(VERB_LOOK, NOUN_LAMP))
 		_vm->_dialogs->show(51234);
-	else if (_action.isAction(VERB_LOOK, NOUN_COUNTER))
+	else if (_action.isAction(NOUN_WALK_BEHIND, NOUN_COUNTER)) {
+		// WORkAROUND: Empty handling to prevent default "can't do that" dialogs showing
+	} else if (_action.isAction(VERB_LOOK, NOUN_COUNTER))
 		_vm->_dialogs->show(51235);
 	else if (_action.isAction(VERB_LOOK, NOUN_ICE_CHESTS))
 		_vm->_dialogs->show(51237);






More information about the Scummvm-git-logs mailing list