diff options
| author | Spp- <u84280@epreinf21.(none)> | 2011-07-08 10:18:20 +0200 |
|---|---|---|
| committer | Spp- <u84280@epreinf21.(none)> | 2011-07-08 10:18:20 +0200 |
| commit | a17aae626c5b9b6ce7ef794e5b4a752b3e755401 (patch) | |
| tree | a7ca87129f037f5fd50999581a2779a2e73f41e5 | |
| parent | 622fa86026ccbb1148ae1d65b79bcefd8e97f0d3 (diff) | |
Core/Misc: Add better log error in CMSG_FAR_SIGHT Opcode
| -rwxr-xr-x | src/server/game/Server/Protocol/Handlers/MiscHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Handlers/MiscHandler.cpp b/src/server/game/Server/Protocol/Handlers/MiscHandler.cpp index 25b64ce1e7a..885165244b3 100755 --- a/src/server/game/Server/Protocol/Handlers/MiscHandler.cpp +++ b/src/server/game/Server/Protocol/Handlers/MiscHandler.cpp @@ -1439,7 +1439,7 @@ void WorldSession::HandleFarSightOpcode(WorldPacket & recv_data) if (WorldObject *target = _player->GetViewpoint()) _player->SetSeer(target); else - sLog->outError("Player %s requests non-existing seer", _player->GetName()); + sLog->outError("Player %s requests non-existing seer " UI64FMTD, _player->GetName(), _player->GetUInt64Value(PLAYER_FARSIGHT)); break; default: sLog->outDebug(LOG_FILTER_NETWORKIO, "Unhandled mode in CMSG_FAR_SIGHT: %u", apply); |
