diff options
author | click <none@none> | 2010-12-25 17:53:50 +0100 |
---|---|---|
committer | click <none@none> | 2010-12-25 17:53:50 +0100 |
commit | 07bebf0f3533c8632ff70973ef8de2d790854769 (patch) | |
tree | b80b3a5e758c34f025141be468781fe68dbaf32a /src | |
parent | bce9b081ec8aadc9b0b1313f850f962107cef573 (diff) |
Core/Handlers: Add some extra output in WorldSession::HandleDismissCritter (give more of which user attempts to dismiss it)
--HG--
branch : trunk
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Server/Protocol/Handlers/PetHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Handlers/PetHandler.cpp b/src/server/game/Server/Protocol/Handlers/PetHandler.cpp index a4ea46d071e..a2eaada7c21 100755 --- a/src/server/game/Server/Protocol/Handlers/PetHandler.cpp +++ b/src/server/game/Server/Protocol/Handlers/PetHandler.cpp @@ -42,7 +42,8 @@ void WorldSession::HandleDismissCritter(WorldPacket &recv_data) if (!pet) { - sLog->outError("Vanitypet %u does not exist", uint32(GUID_LOPART(guid))); + sLog->outError("Vanitypet (GUID: %u) does not exist - player '%s' (GUID: %u / ACCOUNT: %u) attempted to dismiss it", + uint32(GUID_LOPART(guid)), GetPlayer()->GetName(), GetPlayer()->GetGUIDLow(), GetAccountId()); return; } |