Merge pull request #497 from Faith2531/patch-1

Update game.cpp
This commit is contained in:
Henrique Santiago 2014-03-03 12:04:09 -03:00
commit 598a7edf6b
1 changed files with 2 additions and 2 deletions

View File

@ -1459,7 +1459,7 @@ void Game::setProtocolVersion(int version)
if(isOnline())
stdext::throw_exception("Unable to change protocol version while online");
if(version != 0 && (version < 760 || version > 1031))
if(version != 0 && (version < 760 || version > 1035))
stdext::throw_exception(stdext::format("Protocol version %d not supported", version));
m_features.reset();
@ -1581,7 +1581,7 @@ void Game::setClientVersion(int version)
if(isOnline())
stdext::throw_exception("Unable to change client version while online");
if(version != 0 && (version < 760 || version > 1031))
if(version != 0 && (version < 760 || version > 1035))
stdext::throw_exception(stdext::format("Client version %d not supported", version));
m_clientVersion = version;