Merge commit 'dcad86e776a37d402aab5a8146829578c358c701' into pullstream

This commit is contained in:
Rebekah 2024-02-13 19:56:39 -05:00
commit e2b11db644
Signed by: oneechanhax
GPG Key ID: 183EB7902964DAE5
3 changed files with 2 additions and 11 deletions

View File

@ -78,6 +78,7 @@ Seadragon91 (Lukas Pioch)
Sofapriester
Spekdrum (Pablo Beltran)
SphinxC0re
steve-nzr
structinf (xdot)
sweetgiorni
Sxw1212

View File

@ -33,8 +33,7 @@
cRankManager::cRankManager(void) :
m_DB("Ranks.sqlite", SQLite::OPEN_READWRITE | SQLite::OPEN_CREATE),
m_IsInitialized(false),
m_MojangAPI(nullptr)
m_IsInitialized(false)
{
}
@ -44,10 +43,6 @@ cRankManager::cRankManager(void) :
cRankManager::~cRankManager()
{
if (m_MojangAPI != nullptr)
{
m_MojangAPI->SetRankManager(nullptr);
}
}

View File

@ -289,11 +289,6 @@ protected:
/** Set to true once the manager is initialized. */
bool m_IsInitialized;
/** The MojangAPI instance that is used for keeping player names and UUIDs in sync.
Set in Initialize(), may be nullptr. */
cMojangAPI * m_MojangAPI;
/** Returns true if all the DB tables are empty, indicating a fresh new install. */
bool AreDBTablesEmpty(void);