players.c
changeset 165 f81fa8c27236
parent 84 1e0721c29bad
child 201 c40d343115f8
--- a/players.c	Mon Sep 06 18:15:13 2004 +0000
+++ b/players.c	Mon Sep 06 18:22:25 2004 +0000
@@ -494,7 +494,7 @@
 void StartupPlayers()
 {
 	// The AI starts like in the setting with +2 month max
-	_next_competitor_start = _opt.diff.competitor_start_time * 90 * 74 + RandomRange(60 * 74) + 1;
+	_next_competitor_start = _opt.diff.competitor_start_time * 90 * DAY_TICKS + RandomRange(60 * DAY_TICKS) + 1;
 }
 
 static void MaybeStartNewPlayer()
@@ -513,7 +513,7 @@
 		DoStartupNewPlayer(true);
 	
 	// The next AI starts like the difficulty setting said, with +2 month max
-	_next_competitor_start = _opt.diff.competitor_start_time * 90 * 74 + RandomRange(60 * 74) + 1;
+	_next_competitor_start = _opt.diff.competitor_start_time * 90 * DAY_TICKS + RandomRange(60 * DAY_TICKS) + 1;
 }
 
 void InitializePlayers()