More work on rejoin. Server still sends a denial message.

This commit is contained in:
lotodore
2011-09-11 17:41:56 +00:00
parent 32ba77709e
commit 945a8f4588
15 changed files with 131 additions and 55 deletions
+14
View File
@@ -174,6 +174,20 @@ PlayerData::SetGuid(const std::string &guid)
m_guid = guid;
}
std::string
PlayerData::GetOldGuid() const
{
boost::mutex::scoped_lock lock(m_dataMutex);
return m_oldGuid;
}
void
PlayerData::SetOldGuid(const std::string &guid)
{
boost::mutex::scoped_lock lock(m_dataMutex);
m_oldGuid = guid;
}
DB_id
PlayerData::GetDBId() const
{