Scripts/Commands: Forgotten change & fix a mistake.

This commit is contained in:
Cron
2011-08-09 07:43:42 -03:00
parent 564fa1a557
commit e2c1dac196

View File

@@ -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;
}