diff options
author | Shauren <shauren.trinity@gmail.com> | 2025-04-07 23:42:02 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2025-04-07 23:42:02 +0200 |
commit | d4585cf79e3b25221dff8ab4f035fa38f7ee2e16 (patch) | |
tree | e689be47480321fa4bc0a84273b21c0f19b9cbe7 /src | |
parent | 8f07dce5c128951d80ad86838013e5bba276f3c3 (diff) |
Core/AuctionHouse: Fix mass replace mistake in log message
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Handlers/AuctionHouseHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/AuctionHouseHandler.cpp b/src/server/game/Handlers/AuctionHouseHandler.cpp index 515325e3674..6d74c1621cd 100644 --- a/src/server/game/Handlers/AuctionHouseHandler.cpp +++ b/src/server/game/Handlers/AuctionHouseHandler.cpp @@ -929,7 +929,7 @@ void WorldSession::HandleAuctionSellItem(WorldPackets::AuctionHouse::AuctionSell auction.Items.push_back(item); - TC_LOG_INFO("network", "CMSG_AuctionAction::SellItem: {} {} is selling item {} {} to auctioneer {} with count {} with initial bid {} with buyout {} and with time {} (in sec) in auctionhouse {}", + TC_LOG_INFO("network", "CMSG_AUCTION_SELL_ITEM: {} {} is selling item {} {} to auctioneer {} with count {} with initial bid {} with buyout {} and with time {} (in sec) in auctionhouse {}", _player->GetGUID().ToString(), _player->GetName(), item->GetGUID().ToString(), item->GetTemplate()->GetDefaultLocaleName(), creature->GetGUID().ToString(), item->GetCount(), sellItem.MinBid, sellItem.BuyoutPrice, uint32(auctionTime.count()), auctionHouse->GetAuctionHouseId()); |