aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpp <none@none>2010-03-10 09:01:17 +0100
committerSpp <none@none>2010-03-10 09:01:17 +0100
commit103a61a358d07353c5794449ff15d9b1fbc46ac9 (patch)
tree23e28aca14771c1a8ebe8834493ad07da4a82ead
parentb957b2736b2fa9f86b9a3fa312c60dd08de0cd7b (diff)
Fix debug msg in Unit::SetCharmedBy
--HG-- branch : trunk
-rw-r--r--src/game/Unit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index 3c940b6a2de..15f1276ac41 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -14930,7 +14930,7 @@ bool Unit::SetCharmedBy(Unit* charmer, CharmType type)
assert(type != CHARM_TYPE_POSSESS || charmer->GetTypeId() == TYPEID_PLAYER);
assert((type == CHARM_TYPE_VEHICLE) == IsVehicle());
- sLog.outDebug("SetCharmedBy: charmer %u (GUID %u), charmed %u (GUID %u), type %u.", charmer->GetEntry(), GetEntry(), (uint32)type);
+ sLog.outDebug("SetCharmedBy: charmer %u (GUID %u), charmed %u (GUID %u), type %u.", charmer->GetEntry(), charmer->GetGUIDLow(), GetEntry(), GetGUIDLow(), uint32(type));
if (this == charmer)
{