diff options
author | Brian <runningnak3d@gmail.com> | 2009-12-13 05:55:56 -0700 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2009-12-13 05:55:56 -0700 |
commit | 78b56b97018f985fd981251ce302d0a7f01f09e1 (patch) | |
tree | d38b6431e31598046926e82eab065d7e4267062f /src | |
parent | 25886196a7da530268e6608eecdad64bff7d0579 (diff) |
* Proper output of quest ID in dubug log for escort quests that have not
* waypoints
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/bindings/scripts/base/escort_ai.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bindings/scripts/base/escort_ai.cpp b/src/bindings/scripts/base/escort_ai.cpp index fe518b318d1..e751d6c691d 100644 --- a/src/bindings/scripts/base/escort_ai.cpp +++ b/src/bindings/scripts/base/escort_ai.cpp @@ -454,7 +454,7 @@ void npc_escortAI::Start(bool bIsActiveAttacker, bool bRun, uint64 uiPlayerGUID, if (WaypointList.empty()) { - error_db_log("TSCR: EscortAI Start with 0 waypoints (possible missing entry in script_waypoint. Quest: %u).", pQuest); + error_db_log("TSCR: EscortAI Start with 0 waypoints (possible missing entry in script_waypoint. Quest: %u).", m_pQuestForEscort->GetQuestId()); return; } |