diff options
author | Paul Gilbert | 2016-12-17 16:45:08 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-12-17 16:45:08 -0500 |
commit | 10fb151c6bd6dd29196499e275eaccf0cab87b9f (patch) | |
tree | bcb333724dc001787b65ec946301b65e3de9c64e | |
parent | f2d68dc14671715a28ba05b7b78e7cb9d4c8afc7 (diff) | |
download | scummvm-rg350-10fb151c6bd6dd29196499e275eaccf0cab87b9f.tar.gz scummvm-rg350-10fb151c6bd6dd29196499e275eaccf0cab87b9f.tar.bz2 scummvm-rg350-10fb151c6bd6dd29196499e275eaccf0cab87b9f.zip |
TITANIC: Fix summoning Bellbot or Doorbot
-rw-r--r-- | engines/titanic/npcs/summon_bots.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/npcs/summon_bots.cpp b/engines/titanic/npcs/summon_bots.cpp index 6d71847548..3a4cccaa4a 100644 --- a/engines/titanic/npcs/summon_bots.cpp +++ b/engines/titanic/npcs/summon_bots.cpp @@ -68,13 +68,13 @@ bool CSummonBots::SummonBotMsg(CSummonBotMsg *msg) { if (!_fieldC8) return false; - if (petDismissBot("BellBot")) + if (!petDismissBot("BellBot")) petOnSummonBot("Bellbot", msg->_value); } else if (msg->_npcName == "DoorBot") { if (!_fieldCC) return false; - if (petDismissBot("Doorbot")) + if (!petDismissBot("Doorbot")) petOnSummonBot("Doorbot", msg->_value); } else { return false; |