Add in doubleTime capabilities

Add hyper / classic to menu
This commit is contained in:
Travis Weston
2015-02-06 22:35:53 -05:00
committed by Blake Grotewold
parent 5fcdf29601
commit 6e044292ae
8 changed files with 59 additions and 34 deletions
+1 -1
View File
@@ -220,7 +220,7 @@ var Outside = {
schedulePopIncrease: function() {
var nextIncrease = Math.floor(Math.random()*(Outside._POP_DELAY[1] - Outside._POP_DELAY[0])) + Outside._POP_DELAY[0];
Engine.log('next population increase scheduled in ' + nextIncrease + ' minutes');
Outside._popTimeout = setTimeout(Outside.increasePopulation, nextIncrease * 60 * 1000);
Outside._popTimeout = Engine.setTimeout(Outside.increasePopulation, nextIncrease * 60 * 1000);
},
updateWorkersView: function() {