Enabling versions 7.8 to 8.0

This commit is contained in:
Sam
2013-12-26 23:20:18 +01:00
parent d53f4dfa1e
commit 17c4d59b15
3 changed files with 10 additions and 9 deletions

View File

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