aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic
diff options
context:
space:
mode:
authorPaul Gilbert2017-06-22 21:17:59 -0400
committerPaul Gilbert2017-06-22 21:17:59 -0400
commit8792bd17bbe1674e8353736847e158d902fc9228 (patch)
treee403be109125ba971d56e85b1864f54b401eb2dd /engines/titanic
parent4c153039715b4a2e5be7c10009c0392754e3c30f (diff)
downloadscummvm-rg350-8792bd17bbe1674e8353736847e158d902fc9228.tar.gz
scummvm-rg350-8792bd17bbe1674e8353736847e158d902fc9228.tar.bz2
scummvm-rg350-8792bd17bbe1674e8353736847e158d902fc9228.zip
TITANIC: Fix entering correct elevator in Bottom of Well
Diffstat (limited to 'engines/titanic')
-rw-r--r--engines/titanic/game/pet/pet_position.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/titanic/game/pet/pet_position.cpp b/engines/titanic/game/pet/pet_position.cpp
index 8ed16aef3c..03a53c6a72 100644
--- a/engines/titanic/game/pet/pet_position.cpp
+++ b/engines/titanic/game/pet/pet_position.cpp
@@ -243,7 +243,9 @@ bool CPETPosition::LeaveViewMsg(CLeaveViewMsg *msg) {
return true;
} else if (oldView == "SgtLobby.Node 1.S") {
return true;
- } else if (oldView == "BottomOfWell.Node 10.E" || oldView == "BottomOfWell.Node 11.W") {
+ } else if (oldView == "BottomOfWell.Node 10.E") {
+ pet->setRoomsElevatorNum(3);
+ } else if (oldView == "BottomOfWell.Node 11.W") {
pet->setRoomsElevatorNum(1);
return true;
}