From 655233bdfbb7412aa2070d3d9bd76b28e395c38e Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Fri, 16 May 2014 03:40:43 +0300 Subject: MADS: Fix bug when watching the meteorologist through the binoculars --- engines/mads/nebular/nebular_scenes.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/engines/mads/nebular/nebular_scenes.cpp b/engines/mads/nebular/nebular_scenes.cpp index 3d26a41497..8053818d4e 100644 --- a/engines/mads/nebular/nebular_scenes.cpp +++ b/engines/mads/nebular/nebular_scenes.cpp @@ -582,7 +582,10 @@ bool SceneTeleporter::teleporterActions() { } void SceneTeleporter::teleporterStep() { - if ((_globals[kMeteorologistWatch] != METEOROLOGIST_NORMAL) && (_game._trigger >= 230)) { + if (_globals[kMeteorologistWatch] == METEOROLOGIST_NORMAL) + return; + + if (_game._trigger >= 230) { int place = _game._trigger - 230; int digit; -- cgit v1.2.3