diff options
author | Brian <runningnak3d@gmail.com> | 2009-12-13 05:58:24 -0700 |
---|---|---|
committer | Brian <runningnak3d@gmail.com> | 2009-12-13 05:58:24 -0700 |
commit | 47acd2a06163fb721fcfeb1f485860daf6692bdb (patch) | |
tree | 1092723f4e7fb987624bbab27630d9dea0f55126 /src | |
parent | 56e0e57c99910381098c72e779ff607074781449 (diff) |
* Proper output if quest ID in debug log for escort quests without 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; } |