diff options
author | Anubisss <none@none> | 2009-12-17 22:07:10 +0100 |
---|---|---|
committer | Anubisss <none@none> | 2009-12-17 22:07:10 +0100 |
commit | bf454b08e699b6bb460703345c3298c6466fb817 (patch) | |
tree | 5d69d371f14ef112b3b5d9ee76dc8b20542c41dd /src | |
parent | 6653394f8c37a86f2ccb79024ca93e11381cb027 (diff) |
Fix a typo. This fix a crash in escortAI.
--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 9b31d032a71..07f0778389e 100644 --- a/src/bindings/scripts/base/escort_ai.cpp +++ b/src/bindings/scripts/base/escort_ai.cpp @@ -456,7 +456,7 @@ void npc_escortAI::Start(bool bIsActiveAttacker, bool bRun, uint64 uiPlayerGUID, { if (pQuest != NULL) { - error_db_log("TSCR: EscortAI Start with 0 waypoints (possible missing entry in script_waypoint. Quest: %u).", m_pQuestForEscort->GetQuestId()); + error_db_log("TSCR: EscortAI Start with 0 waypoints (possible missing entry in script_waypoint. Quest: %u).", pQuest->GetQuestId()); return; } else |