diff options
| author | Paul Gilbert | 2016-06-26 12:39:44 -0400 |
|---|---|---|
| committer | Paul Gilbert | 2016-07-15 19:25:09 -0400 |
| commit | 6f063c4703e5705edbba7ad39ef9c0656b74bc75 (patch) | |
| tree | 64cb04d4e3f3a327f6a080ffef8e7af6c0f12152 /engines/titanic/carry/brain.cpp | |
| parent | 0146a3c6b6bdb16eef6f46e116b0d9fe9883858f (diff) | |
| download | scummvm-rg350-6f063c4703e5705edbba7ad39ef9c0656b74bc75.tar.gz scummvm-rg350-6f063c4703e5705edbba7ad39ef9c0656b74bc75.tar.bz2 scummvm-rg350-6f063c4703e5705edbba7ad39ef9c0656b74bc75.zip | |
TITANIC: Fleshing out CGameObject and CPetControl methods
Diffstat (limited to 'engines/titanic/carry/brain.cpp')
| -rw-r--r-- | engines/titanic/carry/brain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/carry/brain.cpp b/engines/titanic/carry/brain.cpp index acc29b3f0e..a60e652bda 100644 --- a/engines/titanic/carry/brain.cpp +++ b/engines/titanic/carry/brain.cpp @@ -59,13 +59,13 @@ bool CBrain::UseWithOtherMsg(CUseWithOtherMsg *msg) { if (slot) { if (slot->getName() == "CentralCore") { setVisible(false); - moveToHiddenRoom(); + petMoveToHiddenRoom(); CAddHeadPieceMsg headpieceMsg(getName()); headpieceMsg.execute("CentralCoreSlot"); } else if (!slot->_value1 && slot->getName() == "CentralCoreSlot") { setVisible(false); - moveToHiddenRoom(); + petMoveToHiddenRoom(); CAddHeadPieceMsg headpieceMsg(getName()); headpieceMsg.execute(msg->_other); playSound("z#116.wav", 100, 0, 0); |
