diff options
author | Cron <vertozor@gmail.com> | 2011-08-09 07:43:42 -0300 |
---|---|---|
committer | Cron <vertozor@gmail.com> | 2011-08-09 07:43:42 -0300 |
commit | e2c1dac1967ef8a5b5c9b6b92f4933dd48ffaa1b (patch) | |
tree | 34bb4e17acca6cd02e74b63c429ba2f309025a35 /src | |
parent | 564fa1a557fd84cb63265bae0676aef5b9d0c882 (diff) |
Scripts/Commands: Forgotten change & fix a mistake.
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Commands/cs_debug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Commands/cs_debug.cpp b/src/server/scripts/Commands/cs_debug.cpp index 72d7cb4ecff..a3e862c0812 100644 --- a/src/server/scripts/Commands/cs_debug.cpp +++ b/src/server/scripts/Commands/cs_debug.cpp @@ -449,7 +449,7 @@ public: if (!target) return false; - handler->PSendSysMessage("Loot recipient for creature %s (GUID %u) is %s", target->GetName(), target->GetGUID(), target->hasLootRecipient()?(target->GetLootRecipient()?target->GetLootRecipient()->GetName():"offline"):"no loot recipient"); + handler->PSendSysMessage("Loot recipient for creature %s (GUID %u, DB GUID %u) is %s", target->GetName(), target->GetGUIDLow(), target->GetDBTableGUIDLow(), target->hasLootRecipient()?(target->GetLootRecipient()?target->GetLootRecipient()->GetName():"offline"):"no loot recipient"); return true; } |