diff options
author | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-04-28 17:01:13 +0200 |
---|---|---|
committer | Vincent_Michael <Vincent_Michael@gmx.de> | 2013-04-28 17:01:13 +0200 |
commit | c33b811829767aefe228f6c4f65408c632f05538 (patch) | |
tree | af0acaa9498eaec6012e6baa4ba87bf26c614d83 /src | |
parent | 88c45875d6de7a73dabb2831c59c25520850d329 (diff) |
Core/Guild: Fix logic fail
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Guilds/Guild.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Guilds/Guild.cpp b/src/server/game/Guilds/Guild.cpp index afecd673c07..fe02b693e8b 100644 --- a/src/server/game/Guilds/Guild.cpp +++ b/src/server/game/Guilds/Guild.cpp @@ -987,7 +987,7 @@ void Guild::BankMoveItemData::LogAction(MoveItemData* pFrom) const { sLog->outCommand(m_pPlayer->GetSession()->GetAccountId(), "GM %s (Guid: %u) (Account: %u) deposit item: %s (Entry: %d Count: %u) to guild bank named: %s (Guild ID: %u)", - GUID_LOPART(m_pPlayer->GetGUID()), m_pPlayer->GetName().c_str(), m_pPlayer->GetSession()->GetAccountId(), + m_pPlayer->GetName().c_str(), m_pPlayer->GetGUIDLow(), m_pPlayer->GetSession()->GetAccountId(), pFrom->GetItem()->GetTemplate()->Name1.c_str(), pFrom->GetItem()->GetEntry(), pFrom->GetItem()->GetCount(), m_pGuild->GetName().c_str(), m_pGuild->GetId()); } |