TITANIC: Fix entering correct elevator in Bottom of Well

This commit is contained in:
Paul Gilbert 2017-06-22 21:17:59 -04:00
parent 4c15303971
commit 8792bd17bb

View File

@ -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;
}