[Scummvm-git-logs] scummvm master -> b5662866dcd8d73c20270269c83ae7db232c100e
dreammaster
dreammaster at scummvm.org
Tue Aug 1 02:05:19 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:
b5662866dc TITANIC: Don't let bots appear when you're in the Gondola
Commit: b5662866dcd8d73c20270269c83ae7db232c100e
https://github.com/scummvm/scummvm/commit/b5662866dcd8d73c20270269c83ae7db232c100e
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-07-31T20:04:48-04:00
Commit Message:
TITANIC: Don't let bots appear when you're in the Gondola
I agree with Dafioram, frankly it just looks weird
Changed paths:
engines/titanic/game/idle_summoner.cpp
diff --git a/engines/titanic/game/idle_summoner.cpp b/engines/titanic/game/idle_summoner.cpp
index d67c55f..81192db 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);
More information about the Scummvm-git-logs
mailing list