[Scummvm-git-logs] scummvm master -> d3f3da4d15eeebd55a7e8731d53857be421b8fce
dreammaster
dreammaster at scummvm.org
Sun Jul 23 21:04:29 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:
d3f3da4d15 TITANIC: Fix delay before Bellbot & Doorbot appears
Commit: d3f3da4d15eeebd55a7e8731d53857be421b8fce
https://github.com/scummvm/scummvm/commit/d3f3da4d15eeebd55a7e8731d53857be421b8fce
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2017-07-23T15:04:20-04:00
Commit Message:
TITANIC: Fix delay before Bellbot & Doorbot appears
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 ed0a3d0..dd3aa09 100644
--- a/engines/titanic/game/idle_summoner.cpp
+++ b/engines/titanic/game/idle_summoner.cpp
@@ -80,7 +80,7 @@ bool CIdleSummoner::TimerMsg(CTimerMsg *msg) {
return true;
int region = talkGetDialRegion("BellBot", 1);
- uint delay = region == 1 ? 15000 : 12000;
+ uint delay = region == 1 ? 15000 : 120000;
uint enterTicks = MIN(getNodeEnterTicks(), _ticks);
CString name;
More information about the Scummvm-git-logs
mailing list