Enable protocol 10.75

This commit is contained in:
TheSumm
2015-02-15 03:25:28 +01:00
parent 28ff65be5a
commit cbf70c1d63
4 changed files with 103 additions and 3 deletions

View File

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