diff options
author | Patric Stout <truebrain@openttd.org> | 2021-03-14 20:47:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-14 20:47:31 +0100 |
commit | 9bfa7198fdd617df4ed41086c62d3806d890573d (patch) | |
tree | 373442349ef0be9c96907ad088e51dc4a6fe347b /src/ai | |
parent | 74c98db1b61c805f7931cc252c30cc62c4eb0c90 (diff) | |
download | openttd-9bfa7198fdd617df4ed41086c62d3806d890573d.tar.xz |
Change: Heading for 1.12 now (#8862)
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_info.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_info.cpp b/src/ai/ai_info.cpp index c5280fe5d..985271fa1 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" }; + 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", "1.12" }; return versions.find(api_version) != versions.end(); } |