summaryrefslogtreecommitdiff
path: root/src/ai/ai_config.cpp
diff options
context:
space:
mode:
authorYexo <yexo@openttd.org>2009-01-21 00:09:36 +0000
committerYexo <yexo@openttd.org>2009-01-21 00:09:36 +0000
commit3c757724e9182bf0b8b56f78c5f658465c8336c3 (patch)
tree5489f7a5815f31c8a004a1153b82bdd524c1b746 /src/ai/ai_config.cpp
parent3511218e37cd46e34da557feb409c5f5d30c463b (diff)
downloadopenttd-3c757724e9182bf0b8b56f78c5f658465c8336c3.tar.xz
(svn r15182) -Fix: After updating an AI select the latest version for the next game.
Diffstat (limited to 'src/ai/ai_config.cpp')
-rw-r--r--src/ai/ai_config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_config.cpp b/src/ai/ai_config.cpp
index 4ec500935..8333fcf40 100644
--- a/src/ai/ai_config.cpp
+++ b/src/ai/ai_config.cpp
@@ -71,7 +71,7 @@ AIInfo *AIConfig::GetInfo()
bool AIConfig::ResetInfo()
{
- this->info = AI::FindInfo(this->name, this->version);
+ this->info = AI::FindInfo(this->name, -1);
return this->info != NULL;
}