[Scummvm-git-logs] scummvm master -> 8792bd17bbe1674e8353736847e158d902fc9228
dreammaster
dreammaster at scummvm.org
Fri Jun 23 03:18:09 CEST 2017
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:
8792bd17bb TITANIC: Fix entering correct elevator in Bottom of Well
Commit: 8792bd17bbe1674e8353736847e158d902fc9228
https://github.com/scummvm/scummvm/commit/8792bd17bbe1674e8353736847e158d902fc9228
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-06-22T21:17:59-04:00
Commit Message:
TITANIC: Fix entering correct elevator in Bottom of Well
Changed paths:
engines/titanic/game/pet/pet_position.cpp
diff --git a/engines/titanic/game/pet/pet_position.cpp b/engines/titanic/game/pet/pet_position.cpp
index 8ed16ae..03a53c6 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;
}
More information about the Scummvm-git-logs
mailing list