diff options
author | Yexo <yexo@openttd.org> | 2009-01-21 00:09:36 +0000 |
---|---|---|
committer | Yexo <yexo@openttd.org> | 2009-01-21 00:09:36 +0000 |
commit | 3c757724e9182bf0b8b56f78c5f658465c8336c3 (patch) | |
tree | 5489f7a5815f31c8a004a1153b82bdd524c1b746 | |
parent | 3511218e37cd46e34da557feb409c5f5d30c463b (diff) | |
download | openttd-3c757724e9182bf0b8b56f78c5f658465c8336c3.tar.xz |
(svn r15182) -Fix: After updating an AI select the latest version for the next game.
-rw-r--r-- | src/ai/ai_config.cpp | 2 |
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; } |