Minimal 10.91 support

master
Sam 8 years ago
parent 5913cc0fd7
commit 7a8e605704

@ -74,7 +74,7 @@ function g_game.getSupportedClients()
1058, 1059, 1060, 1061, 1062,
1063, 1064, 1070, 1071, 1072,
1073, 1074, 1075, 1076, 1080,
1081, 1082, 1090
1081, 1082, 1090, 1091
}
end

@ -1492,7 +1492,7 @@ void Game::setProtocolVersion(int version)
if(isOnline())
stdext::throw_exception("Unable to change protocol version while online");
if(version != 0 && (version < 740 || version > 1090))
if(version != 0 && (version < 740 || version > 1091))
stdext::throw_exception(stdext::format("Protocol version %d not supported", version));
m_protocolVersion = version;
@ -1510,7 +1510,7 @@ void Game::setClientVersion(int version)
if(isOnline())
stdext::throw_exception("Unable to change client version while online");
if(version != 0 && (version < 740 || version > 1090))
if(version != 0 && (version < 740 || version > 1091))
stdext::throw_exception(stdext::format("Client version %d not supported", version));
m_features.reset();

Loading…
Cancel
Save