aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Movement/Waypoints
diff options
context:
space:
mode:
authorShauren <none@none>2010-12-23 23:25:44 +0100
committerShauren <none@none>2010-12-23 23:25:44 +0100
commit928443d8993869dfbf3adceabe4ba0b3cfe0edef (patch)
treeb30f1385e6f2dd8d95357590593aa2988b094593 /src/server/game/Movement/Waypoints
parent95daf7998fc3b772fdcd70087c12db80bd5a031a (diff)
Core: Removed more operator workarounds for ACE_Singleton (missed previously because of inconsistent naming)
--HG-- branch : trunk
Diffstat (limited to 'src/server/game/Movement/Waypoints')
-rwxr-xr-xsrc/server/game/Movement/Waypoints/WaypointManager.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Movement/Waypoints/WaypointManager.cpp b/src/server/game/Movement/Waypoints/WaypointManager.cpp
index de29bc49c7c..5aaba6aeb4c 100755
--- a/src/server/game/Movement/Waypoints/WaypointManager.cpp
+++ b/src/server/game/Movement/Waypoints/WaypointManager.cpp
@@ -41,8 +41,8 @@ void WaypointStore::Load()
if (!result)
{
- sLog.outErrorDb(">> Loaded 0 waypoints. DB table `waypoint_data` is empty!");
- sLog.outString();
+ sLog->outErrorDb(">> Loaded 0 waypoints. DB table `waypoint_data` is empty!");
+ sLog->outString();
return;
}
@@ -88,8 +88,8 @@ void WaypointStore::Load()
}
while (result->NextRow()) ;
- sLog.outString(">> Loaded %u waypoints in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
- sLog.outString();
+ sLog->outString(">> Loaded %u waypoints in %u ms", count, GetMSTimeDiffToNow(oldMSTime));
+ sLog->outString();
}
void WaypointStore::UpdatePath(uint32 id)