aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRat <none@none>2010-01-26 10:54:11 +0100
committerRat <none@none>2010-01-26 10:54:11 +0100
commit345d9f0d8660279da77dfe920bbb3f5ba6e305a4 (patch)
tree720157c717fd8473ac20f74a160b2abad6532aa9
parentdf97b00632341193a675ce081b3035ea5de78495 (diff)
*log creature's entry in eascortAI error log
--HG-- branch : trunk
-rw-r--r--src/game/ScriptedEscortAI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ScriptedEscortAI.cpp b/src/game/ScriptedEscortAI.cpp
index ae94dd3eea3..e170926bbbb 100644
--- a/src/game/ScriptedEscortAI.cpp
+++ b/src/game/ScriptedEscortAI.cpp
@@ -340,7 +340,7 @@ void npc_escortAI::MovementInform(uint32 uiMoveType, uint32 uiPointId)
//Make sure that we are still on the right waypoint
if (CurrentWP->id != uiPointId)
{
- error_log("TSCR ERROR: EscortAI reached waypoint out of order %u, expected %u", uiPointId, CurrentWP->id);
+ error_log("TSCR ERROR: EscortAI reached waypoint out of order %u, expected %u, creature entry %u", uiPointId, CurrentWP->id, m_creature->GetEntry());
return;
}