From 462d8db30fd48adf010caaa945ba7bc3743062ee Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 29 Jun 2014 18:40:06 -0400 Subject: MADS: Fix incorrect difficulty check for leaving ship without rebreather --- engines/mads/nebular/nebular_scenes1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/mads/nebular/nebular_scenes1.cpp b/engines/mads/nebular/nebular_scenes1.cpp index a81f11b8a5..ab072c1d3c 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; -- cgit v1.2.3