[Scummvm-cvs-logs] scummvm master -> 462d8db30fd48adf010caaa945ba7bc3743062ee
dreammaster
dreammaster at scummvm.org
Mon Jun 30 00:40:47 CEST 2014
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:
462d8db30f MADS: Fix incorrect difficulty check for leaving ship without rebreather
Commit: 462d8db30fd48adf010caaa945ba7bc3743062ee
https://github.com/scummvm/scummvm/commit/462d8db30fd48adf010caaa945ba7bc3743062ee
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2014-06-29T18:40:06-04:00
Commit Message:
MADS: Fix incorrect difficulty check for leaving ship without rebreather
Changed paths:
engines/mads/nebular/nebular_scenes1.cpp
diff --git a/engines/mads/nebular/nebular_scenes1.cpp b/engines/mads/nebular/nebular_scenes1.cpp
index a81f11b..ab072c1 100644
--- a/engines/mads/nebular/nebular_scenes1.cpp
+++ b/engines/mads/nebular/nebular_scenes1.cpp
@@ -1033,7 +1033,7 @@ void Scene102::actions() {
_action._inProgress = false;
return;
}
- } else if (_action.isAction(VERB_LOOK) || (_game._difficulty != DIFFICULTY_EASY)) {
+ } else if (_action.isAction(VERB_LOOK) || (_game._difficulty != DIFFICULTY_HARD)) {
_vm->_dialogs->show(10222);
_action._inProgress = false;
return;
More information about the Scummvm-git-logs
mailing list