mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-28 20:55:19 +00:00
MADS: Fix walking behind counter at Sand Bar restaurant
This commit is contained in:
parent
d048776ef3
commit
1d76659da8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user