summaryrefslogtreecommitdiff
path: root/src/game
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/game
parent39662aabefa851a153b66571a50fd4b78b83ced1 (diff)
downloadopenttd-394c749b6b0fa3e185734b7e5b92ad71420fdf2c.tar.xz
Change: Heading for 13 now (#9573)
Diffstat (limited to 'src/game')
-rw-r--r--src/game/game_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game_info.cpp b/src/game/game_info.cpp
index 98818e8dd..5f7ba259b 100644
--- a/src/game/game_info.cpp
+++ b/src/game/game_info.cpp
@@ -23,7 +23,7 @@
*/
static bool CheckAPIVersion(const char *api_version)
{
- static const std::set<std::string> versions = { "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 = { "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();
}