diff options
author | Matthew Hoops | 2013-12-11 23:33:42 -0500 |
---|---|---|
committer | Matthew Hoops | 2013-12-11 23:34:16 -0500 |
commit | 131b99844b9f6ef8753c9be2a0a1332933dd7f6b (patch) | |
tree | 900e28529b04c79b3375082a4f999255de7f04b9 /engines/pegasus | |
parent | 5f62f5bad09cd053c181afa6cf59708682ca4fff (diff) | |
download | scummvm-rg350-131b99844b9f6ef8753c9be2a0a1332933dd7f6b.tar.gz scummvm-rg350-131b99844b9f6ef8753c9be2a0a1332933dd7f6b.tar.bz2 scummvm-rg350-131b99844b9f6ef8753c9be2a0a1332933dd7f6b.zip |
PEGASUS: Fix the robot timer outside of the shield generator
Diffstat (limited to 'engines/pegasus')
-rw-r--r-- | engines/pegasus/neighborhood/mars/mars.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/neighborhood/mars/mars.cpp b/engines/pegasus/neighborhood/mars/mars.cpp index 775221589a..435bcd4c9e 100644 --- a/engines/pegasus/neighborhood/mars/mars.cpp +++ b/engines/pegasus/neighborhood/mars/mars.cpp @@ -2011,7 +2011,7 @@ void Mars::dropItemIntoRoom(Item *item, Hotspot *dropSpot) { void Mars::robotTiredOfWaiting() { if (GameState.getCurrentRoomAndView() == MakeRoomView(kMars48, kEast)) { - if (_attackingItem) { + if (!_attackingItem) { startExtraSequence(kMars48RobotKillsPlayer, kExtraCompletedFlag, kFilterNoInput); loadLoopSound2(""); } else { |