aboutsummaryrefslogtreecommitdiff
path: root/src/trinitycore/WorldRunnable.cpp
diff options
context:
space:
mode:
authorQAston <none@none>2009-07-31 13:21:32 +0200
committerQAston <none@none>2009-07-31 13:21:32 +0200
commitb212461f95aad264b608abfb88e66e0cf4ce511f (patch)
treef97ca6171659153c6f045e71b33332e3ef1d178f /src/trinitycore/WorldRunnable.cpp
parent1f53433c6c4de01709410581ba644be7e6aaf6fe (diff)
parent40f7c7243cae08cda7b129ac13d4768414753b4e (diff)
*Merge after backout.
--HG-- branch : trunk
Diffstat (limited to 'src/trinitycore/WorldRunnable.cpp')
-rw-r--r--src/trinitycore/WorldRunnable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trinitycore/WorldRunnable.cpp b/src/trinitycore/WorldRunnable.cpp
index ad0243a36ae..06c0e69fa16 100644
--- a/src/trinitycore/WorldRunnable.cpp
+++ b/src/trinitycore/WorldRunnable.cpp
@@ -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();
}