From b5662866dcd8d73c20270269c83ae7db232c100e Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 31 Jul 2017 20:04:48 -0400 Subject: TITANIC: Don't let bots appear when you're in the Gondola I agree with Dafioram, frankly it just looks weird --- engines/titanic/game/idle_summoner.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'engines/titanic/game/idle_summoner.cpp') diff --git a/engines/titanic/game/idle_summoner.cpp b/engines/titanic/game/idle_summoner.cpp index d67c55f157..81192db0a3 100644 --- a/engines/titanic/game/idle_summoner.cpp +++ b/engines/titanic/game/idle_summoner.cpp @@ -82,9 +82,11 @@ bool CIdleSummoner::TimerMsg(CTimerMsg *msg) { return true; // WORKAROUND: To benefit the players, don't allow the bots to turn up - // when at the Embarkation SuccUBus or in front of the Deskbot's desk + // when at the Embarkation SuccUBus, in front of the Deskbot's desk, + // or when in the Gondola, since it just looks weird CString fullName = getFullViewName(); - if (fullName == "EmbLobby.Node 2.W" || fullName == "EmbLobby.Node 4.E") + if (fullName == "EmbLobby.Node 2.W" || fullName == "EmbLobby.Node 4.E" || + fullName == "TopOfWell.Node 29.N") return true; int region = talkGetDialRegion("BellBot", 1); -- cgit v1.2.3