*Replace "LoginDatabase" with "loginDatabase"

--HG--
branch : trunk
This commit is contained in:
megamage
2009-07-31 11:29:28 +08:00
parent ca271eb5dc
commit 0fcadd9d25
21 changed files with 135 additions and 135 deletions

View File

@@ -50,7 +50,7 @@ void WorldRunnable::run()
///- Init new SQL thread for the world database
WorldDatabase.ThreadStart(); // let thread do safe mySQL requests (one connection call enough)
CharacterDatabase.ThreadStart();
LoginDatabase.ThreadStart();
loginDatabase.ThreadStart();
sWorld.InitResultQueue();
uint32 realCurrTime = 0;
@@ -100,5 +100,5 @@ void WorldRunnable::run()
///- End the database thread
WorldDatabase.ThreadEnd(); // free mySQL thread resources
CharacterDatabase.ThreadStart();
LoginDatabase.ThreadEnd();
loginDatabase.ThreadEnd();
}