aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Movement/Waypoints
diff options
context:
space:
mode:
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)