summaryrefslogtreecommitdiff
path: root/src/ai
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-09-25 13:48:03 +0200
committerGitHub <noreply@github.com>2021-09-25 13:48:03 +0200
commit394c749b6b0fa3e185734b7e5b92ad71420fdf2c (patch)
tree8778ab3f76393aeece0c92225a0a0510c0c50388 /src/ai
parent39662aabefa851a153b66571a50fd4b78b83ced1 (diff)
downloadopenttd-394c749b6b0fa3e185734b7e5b92ad71420fdf2c.tar.xz
Change: Heading for 13 now (#9573)
Diffstat (limited to 'src/ai')
-rw-r--r--src/ai/ai_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_info.cpp b/src/ai/ai_info.cpp
index 17ad01257..fcd1b5a1a 100644
--- a/src/ai/ai_info.cpp
+++ b/src/ai/ai_info.cpp
@@ -25,7 +25,7 @@
*/
static bool CheckAPIVersion(const char *api_version)
{
- static const std::set<std::string> versions = { "0.7", "1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "12" };
+ static const std::set<std::string> versions = { "0.7", "1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "12", "13" };
return versions.find(api_version) != versions.end();
}