diff options
author | Filippos Karapetis | 2014-06-01 08:33:51 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-06-01 08:33:51 +0300 |
commit | 5e5a37e9786cedeff4159094705aa94d33cc9ec4 (patch) | |
tree | 2f979a7934ed8e4164ed173b1eb681193234db6a /engines/mads | |
parent | 0c1c83e5e69579669f77fc6b1ca80d58f2c57b1a (diff) | |
download | scummvm-rg350-5e5a37e9786cedeff4159094705aa94d33cc9ec4.tar.gz scummvm-rg350-5e5a37e9786cedeff4159094705aa94d33cc9ec4.tar.bz2 scummvm-rg350-5e5a37e9786cedeff4159094705aa94d33cc9ec4.zip |
MADS: Fix sitting on the bar stool in scene 402 (bar)
Diffstat (limited to 'engines/mads')
-rw-r--r-- | engines/mads/nebular/nebular_scenes4.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/nebular/nebular_scenes4.cpp b/engines/mads/nebular/nebular_scenes4.cpp index d114232255..4763391b66 100644 --- a/engines/mads/nebular/nebular_scenes4.cpp +++ b/engines/mads/nebular/nebular_scenes4.cpp @@ -2183,10 +2183,10 @@ void Scene402::actions() { _game._triggerSetupMode = SEQUENCE_TRIGGER_DAEMON; _scene->_sequences.addTimer(120, 44); _game._player._stepEnabled = false; - } else if (_action.isAction(VERB_WALK_ALONG, NOUN_BAR_STOOL) && (_game._player._targetPos.x == 248)){ + } else if (_action.isAction(VERB_SIT_ON, NOUN_BAR_STOOL) && (_game._player._targetPos.x == 248)){ _scene->_kernelMessages.add(Common::Point(0, -14), 0x1110, 34, 0, 120, _game.getQuote(0x20D)); _scene->_kernelMessages.add(Common::Point(0, 0), 0x1110, 34, 0, 120, _game.getQuote(0x20E)); - } else if (_action.isAction(VERB_WALK_ALONG, NOUN_BAR_STOOL) && !_roxOnStool && (_game._player._targetPos.x != 248)) { + } else if (_action.isAction(VERB_SIT_ON, NOUN_BAR_STOOL) && !_roxOnStool && (_game._player._targetPos.x != 248)) { _game._player._visible = false; _game._triggerSetupMode = SEQUENCE_TRIGGER_DAEMON; _globals._sequenceIndexes[6] = _scene->_sequences.addSpriteCycle(_globals._spriteIndexes[6], false, 7, 1, 0, 0); |