diff options
Diffstat (limited to 'engines/saga/script.cpp')
-rw-r--r-- | engines/saga/script.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/saga/script.cpp b/engines/saga/script.cpp index a7d4392795..3c5938ff03 100644 --- a/engines/saga/script.cpp +++ b/engines/saga/script.cpp @@ -719,8 +719,10 @@ void Script::whichObject(const Point& mousePoint) { (_currentVerb == getVerbType(kVerbClose)) || ((_currentVerb == getVerbType(kVerbGive)) && !_firstObjectSet) || ((_currentVerb == getVerbType(kVerbUse)) && !(actor->_flags & kFollower))) { - objectId = ID_NOTHING; - newObjectId = ID_NOTHING; + if (_vm->getGameType() == GType_ITE) { + objectId = ID_NOTHING; + newObjectId = ID_NOTHING; + } } } } |