Store avatar type of current avatar in db.

This commit is contained in:
lotodore
2010-08-23 17:37:22 +00:00
parent 6972437f64
commit 1f5447bd1f
5 changed files with 27 additions and 9 deletions
+6 -1
View File
@@ -49,11 +49,16 @@ ServerDBGeneric::Stop()
}
void
ServerDBGeneric::AsyncPlayerLogin(unsigned requestId, const string &/*playerName*/, const std::string &/*avatarHash*/)
ServerDBGeneric::AsyncPlayerLogin(unsigned requestId, const string &/*playerName*/)
{
m_ioService->post(boost::bind(&ServerDBCallback::PlayerLoginFailed, &m_callback, requestId));
}
void
ServerDBGeneric::PlayerPostLogin(DB_id /*playerId*/, const std::string &/*avatarHash*/, const std::string &/*avatarType*/)
{
}
void
ServerDBGeneric::PlayerLogout(DB_id /*playerId*/)
{