mirror of
https://github.com/edubart/otclient.git
synced 2025-10-19 14:03:26 +02:00
Protocol 10.73 support
This commit is contained in:
@@ -1456,7 +1456,7 @@ void Game::setProtocolVersion(int version)
|
||||
if(isOnline())
|
||||
stdext::throw_exception("Unable to change protocol version while online");
|
||||
|
||||
if(version != 0 && (version < 740 || version > 1072))
|
||||
if(version != 0 && (version < 740 || version > 1073))
|
||||
stdext::throw_exception(stdext::format("Protocol version %d not supported", version));
|
||||
|
||||
m_protocolVersion = version;
|
||||
@@ -1474,7 +1474,7 @@ void Game::setClientVersion(int version)
|
||||
if(isOnline())
|
||||
stdext::throw_exception("Unable to change client version while online");
|
||||
|
||||
if(version != 0 && (version < 740 || version > 1072))
|
||||
if(version != 0 && (version < 740 || version > 1073))
|
||||
stdext::throw_exception(stdext::format("Client version %d not supported", version));
|
||||
|
||||
m_features.reset();
|
||||
|
Reference in New Issue
Block a user