Minimal 10.91 support

This commit is contained in:
Sam
2016-03-03 08:44:09 +01:00
parent 5913cc0fd7
commit 7a8e605704
2 changed files with 3 additions and 3 deletions

View File

@@ -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();