summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2009-01-13 18:04:12 +0000
committertruebrain <truebrain@openttd.org>2009-01-13 18:04:12 +0000
commitf293bff01b54d17abd57663323a2d7f588fbea01 (patch)
treec3e8ffaa86ef7bed2576eb09b24713ef8f61aaf1 /src/ai
parent7014833641e9115c49acc9bb0757c4128953ab8c (diff)
downloadopenttd-f293bff01b54d17abd57663323a2d7f588fbea01.tar.xz
(svn r15066) -Change: start_date is now in days, instead of in months (Yexo)
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/ai.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ai/ai.hpp b/src/ai/ai.hpp
index 6658d1de5..f53a1c9fd 100644
--- a/src/ai/ai.hpp
+++ b/src/ai/ai.hpp
@@ -21,12 +21,12 @@ public:
* The default months AIs start after eachother.
*/
enum StartNext {
- START_NEXT_EASY = 48,
- START_NEXT_MEDIUM = 24,
- START_NEXT_HARD = 12,
+ START_NEXT_EASY = 1461,
+ START_NEXT_MEDIUM = 730,
+ START_NEXT_HARD = 365,
START_NEXT_MIN = 0,
- START_NEXT_MAX = 120,
- START_NEXT_DEVIATION = 2,
+ START_NEXT_MAX = 3600,
+ START_NEXT_DEVIATION = 60,
};
/**
@@ -101,7 +101,7 @@ public:
static void Load(CompanyID company, int version);
/**
- * Get the number of months before the next AI should start.
+ * Get the number of days before the next AI should start.
*/
static int GetStartNextTime();