Implement purse slot (closes #208), add version 10.37 (could not find protocol changes)

This commit is contained in:
Sam
2014-03-12 15:46:35 +01:00
parent 8d8f32b081
commit a58a3e90c8
5 changed files with 40 additions and 6 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 > 1036))
if(version != 0 && (version < 760 || version > 1037))
stdext::throw_exception(stdext::format("Protocol version %d not supported", version));
m_features.reset();
@@ -1587,7 +1587,7 @@ void Game::setClientVersion(int version)
if(isOnline())
stdext::throw_exception("Unable to change client version while online");
if(version != 0 && (version < 760 || version > 1036))
if(version != 0 && (version < 760 || version > 1037))
stdext::throw_exception(stdext::format("Client version %d not supported", version));
m_clientVersion = version;