diff --git a/modules/gamelib/game.lua b/modules/gamelib/game.lua index cc273b54..07e985f1 100644 --- a/modules/gamelib/game.lua +++ b/modules/gamelib/game.lua @@ -74,7 +74,8 @@ function g_game.getSupportedClients() 1040, 1041, 1050, 1051, 1052, 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, - 1063, 1064, 1070, 1071, 1072 + 1063, 1064, 1070, 1071, 1072, + 1073 } end diff --git a/src/client/game.cpp b/src/client/game.cpp index fe133e3f..688b0960 100644 --- a/src/client/game.cpp +++ b/src/client/game.cpp @@ -1456,7 +1456,7 @@ void Game::setProtocolVersion(int version) if(isOnline()) stdext::throw_exception("Unable to change protocol version while online"); - if(version != 0 && (version < 740 || version > 1072)) + if(version != 0 && (version < 740 || version > 1073)) stdext::throw_exception(stdext::format("Protocol version %d not supported", version)); m_protocolVersion = version; @@ -1474,7 +1474,7 @@ void Game::setClientVersion(int version) if(isOnline()) stdext::throw_exception("Unable to change client version while online"); - if(version != 0 && (version < 740 || version > 1072)) + if(version != 0 && (version < 740 || version > 1073)) stdext::throw_exception(stdext::format("Client version %d not supported", version)); m_features.reset();